I am using a configurable proxy(little proxy) to listen on requests generated from client end i.e chrome browser. I need the body of the post request.
In the pipeline, this is the one i added. I thought i will be getting a FullHttpRequest, but getting
pipeline.addLast("decoder", new HttpRequestDecoder(8192*4, 8192 * 8,8192 * 8));
pipeline.addLast("inflater", new HttpContentDecompressor());
pipeline.addLast("aggregator", new HttpObjectAggregator(1048576));
pipeline.addLast("encoder", new HttpResponseEncoder());
For Post request, I am getting this data type HttpObjectAggregator#AggregatedFullHttpRequest. I tried debugging. But not able to understand the concept of compositebytebuff.
Let me know how to achieve this.