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
相关问题
- Angular RxJS mergeMap types
- HTML form is not sending $_POST values
- Netty websocket client does not read new frames fr
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
I suspect you have
HttpChunkAggregator
in the pipeline. Please remove it and handleHttpChunk
by yourself.