Can anyone guide me in acquiring the POST content-length of a website by just using sockets. Thanks and Kudos! (I'm avoiding using httpwebrequest for some reason)

link|improve this question

50% accept rate
Could you me more specific? Are you making the request (i.e. your app is a web client) or receiving the request (i.e. your app is a HTTP server) – Justin Dec 8 '10 at 3:37
sorry for that, its a proxy application by the way. Both :) – John Dec 8 '10 at 3:41
feedback

3 Answers

up vote 2 down vote accepted

If it's a proxy application you don't need to be parsing headers at all. You just need to mirror the data from one side to the other, as bytes. The only thing you need to parse is for example the initial HTTP CONNECTION request, or whatever your initial handshake with the client is that causes you to set up the upstream connection. The rest of it is just byte copying and EOS and error propagation.

link|improve this answer
feedback

In the Http protocol the header is seperated from the content by a double crlf.

So you could either parse the header and get the Content-Length header or you can figure out the length of the content (since you know where the header ends and content starts).

link|improve this answer
feedback

HTTP/1.1 message length rules are described in section 4.4 of the RFC 2616.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.