I am using LittleProxy which implements Netty . I am trying to receive the content of an HTTP request (which contains XML).
This works perfectly, until I receive content over 1024 characters (bytes?). I still see the request coming in, and I can see the correct content-length from the HTTP header. However, the content is not returned at all (empty string).
How can I receive more content? My HTTP requests contain SOAP message sent by cURL who will definitely exceed 1024 bytes.