Hi,
I have a client and server, both are written in Java. Client is communicating with server using HTTP protocol, but one of the request that client sending to the server has wrong content-length header. When I put fiddler in between them fiddler is waiting to read complete request since content-length header mentioned as 256 but it is not send any content length.
Problematic request:
POST /api/test?s=1&p=3 HTTP/1.1\r\n
Host: 127.0.0.1\r\n
Connection: close\r\n
Content-Length: 256\r\n
X-Version: 2\r\n\r\n
Is there anyway that I can tell fiddler to do not read any content for the above request?
Thanks,
Suresh