Monitoring HTTP Traffic
Over the past week or so, I’ve had a few people ask me questions that end up relating to HTTP traffic (usually ASP.NET-related). If you’ve never actually watched the traffic between your client and the remote server, you’re missing out on a lot of great insight. Two of the questions related to ASP.NET ViewState and bandwidth usage, and the other related to Web Service requests. I used to recommend a freely available tool called ProxyTrace (which has served me well for many years), but I’ve recently come to like Fiddler, which is also free. Although you can get a lot of this information by running NetMon, these two tools are targeted to HTTP, so they’re able to parse and display the traffic in a much more readable format. If you do Web Services or are just generally curious about what ASP.NET (or any site for that matter) is sending over the transport, check out these tools.
Comments
- Anonymous
June 17, 2004
I personally use ieHTTPHeaders http://www.blunck.info/iehttpheaders.html or on the mozilla platform LiveHTTPHeaders http://livehttpheaders.mozdev.org/ Both are plugged into the web-browser.
I have to say that Fiddler looks very clean. - Anonymous
June 22, 2004
Thanks for the mention. Fiddler shipped version 0.95.2 yesterday with a number of new features. http://www.bayden.com/dl/FiddlerBeta.exe - Anonymous
October 27, 2008
HTTP Debugger is another http monitoring tool. It works with all browsers, custom software programs and Windows System Services. Thanks, KP