out.writeBytes("Z");
out.flush();
/** 3rd
Request [END] **/
out.close();
The request properly
goes to Apache without any exception on client side.
But the server
receives very data only for 2 requests:
SERVER:
POST /
HTTP/1.1
Host: 192.168.56.17:9801
X-Forwarded-For:
192.168.56.17
X-Forwarded-Server: www.pavan.com
Connection:
Keep-Alive
Content-Length: 6
ABC
PQR
This is because of
content length is 6. If I increase it to 9 then it works
perfectly.
See here every
request is sending its content length. But apache considers all 3 requests as
the part of single request.
How to
convince Apache that the client wants to make 3 separate
requests?
Waitng for the
reply.
regards,
Anand