What HTTP traffic monitor would you recommend for Windows?

WindowsHttpTrafficSniffer

Windows Problem Overview


I need the sniffer to test network traffic of applications developed by me for Windows and Facebook.

Basic requirements:

  • display request and response
  • display HTTP headers
  • display the time it took to complete HTTP request

Now I'm using HTTP Analyzer. A very good tool, but it terminates with some error after 10-15 min running on Vista.

Windows Solutions


Solution 1 - Windows

Wireshark if you want to see everything going on in the network.

Fiddler if you want to just monitor HTTP/s traffic.

Live HTTP Headers if you're in Firefox and want a quick plugin just to see the headers.

Also FireBug can get you that information too and provides a nice interface when your working on a single page during development. I've used it to monitor AJAX transactions.

Solution 2 - Windows

I now use CharlesProxy for development, but previously I have used Fiddler

Solution 3 - Windows

Try Wireshark:

> Wireshark is the world's foremost > network protocol analyzer, and is the > de facto (and often de jure) standard > across many industries and educational > institutions.

There is a bit of a learning curve but it is far and away the best tool available.

Solution 4 - Windows

Solution 5 - Windows

Fiddler is great when you are only interested in the http(s) side of the communications. It is also very useful when you are trying to inspect inside a https stream.

Solution 6 - Windows

I use Wireshark in most cases, but I have found Fiddler to be less of a hassle when dealing with encrypted data.

Solution 7 - Windows

I like TcpCatcher because it is very simple to use and has a modern interface. It is provided as a jar file, you just download it and run it (no installation process). Also, it comes with a very useful "on the fly" packets modification features (debug mode).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPavelView Question on Stackoverflow
Solution 1 - WindowsICodeForCoffeeView Answer on Stackoverflow
Solution 2 - WindowsRichy B.View Answer on Stackoverflow
Solution 3 - WindowsAndrew HareView Answer on Stackoverflow
Solution 4 - WindowsJulian ReschkeView Answer on Stackoverflow
Solution 5 - WindowsSamView Answer on Stackoverflow
Solution 6 - WindowsNelsonView Answer on Stackoverflow
Solution 7 - Windowsuser391552View Answer on Stackoverflow