Lightweight tool for viewing raw HTTP messages?
- by rewbs
Hi,
I'm investigating differences in behaviour between a couple of Web servers. I need to see raw response data from the servers (i.e. before the response is de-chunked if it has "Transfer-Encoding:chunked" and before it is decompressed if it has "Content-Encoding:gzip").
I can find plenty of simple HTTP client that nearly do what I need (e.g. Poster, RESTClient), but they tend to decode the response one step too far.
Network analysers like Wireshark give me what I need but are a bit heavyweight. Telnet is my best bet so far, but is a bit too simplistic (actions like capturing data or entering requests are a bit laborious).
Can anyone recommend a good, lightweight tool for sending / viewing the raw data that constitute HTTP messages?
Edit: I should add that I'm on Windows. Also, the tool would need to work both with remote and local servers.