I am using Netty for socket connection mainly. But i also want to use netty to handle some http connections as well.
The problem is : the data in the post method sent to Netty Http Server is so large . So Netty raise the exception: Long Frame Exception.
Anyone please tell me how to configure Netty accept bigger Post param value.
Thank you very much
I am using Netty for socket connection mainly. But i also want to use
Share
I suspect you have
HttpChunkAggregatorin the pipeline. Please remove it and handleHttpChunkby yourself.