Are there any tool for monitoring HTTP responses? so open such tool up. give it URL. And it goes to it and brings you back not only body of http response but all http response.

link|improve this question

feedback

13 Answers

up vote 13 down vote accepted

Fiddler2

http://www.fiddlertool.com/fiddler2/version.asp

Fiddler acts as an http proxy, it lets you examine outgoing requests and incoming responses (raw headers, data, everything). It also lets you change requests, resend them and manipulate them directly. It is invaluable.

alt text

link|improve this answer
+1 This tool is great and has advantages over browser plugins. For one, you can debug any application that is proxy aware. – Segfault Apr 28 '10 at 13:31
feedback

Use Firebug,if you're using FireFox.

alt text

Examine HTTP Headers

alt text

XMLHttpRequest monitoring

alt text

Also checkout the light version Firebug Light which works on all the browsers out of the box. no setup required. Firebug Lite does show Http Response headers and network monitoring but it's good enough to play around with the DOM.

link|improve this answer
+1 for the web developers friend, I thought Fiddler2 first but I use firebug far more frequently. – vfilby Apr 28 '10 at 13:26
feedback

Try REDbot: http://redbot.org/

link|improve this answer
feedback

If you're looking for a tool allowing to monitor HTTP requests / responses on client side, you should take a look at Fiddler2.

link|improve this answer
feedback

Live HTTP Headers

link|improve this answer
feedback

Some options:

  • Download "Live HTTP headers" or Firebug add-ons for Firefox
  • Use wget with the -s option (if you're on Unix/Linux)
  • Download something like Wireshark to see the whole TCP/IP traffic stream
link|improve this answer
feedback

parros proxy is great for this : http://www.parosproxy.org/index.shtml

link|improve this answer
feedback

well... I suppose that defines any browser, but if you want to analyze the response in code, cURL is one of the most used tools for networking, not just HTTP but other protocols as well. It will give you the headers as well as the body and allow authentication, etc., all from a command line or embedded elsewhere, as in a PHP script.

link|improve this answer
feedback

I love Burp Suite but this is as much focused on intercepting and modifying HTTP requests as it is monitoring them.

link|improve this answer
feedback

Not the specific tools you are looking for, but I highly recommend getting familiar with tcpdump and/or wireshark packet analyzers if you are into any sort of network programming. The latter has a "Follow TCP Stream" feature to look at the bytes flowing through TCP pipe.

link|improve this answer
feedback

http://www.httpdebugger.com/download.html

Or wireshark..

link|improve this answer
feedback

GNU Wget

wget --save-headers URL

link|improve this answer
feedback

Charles Proxy provides easy access to FLV file information such as video codec and embeded metadata. To find this information you will want to find and select the flv in Charles. When selected you will then want to select the "Response" tab in the opposite window to revel flv file info. alt text

http://www.jonathanspooner.com/web-development/charles-proxy-for-flv-debugging/

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.