How to get Fiddler to report HTTP connections on local PC

I have a client and a server and they both are in a local box and they speak to web services. How can I get Fiddler to report these connections?

It seems to want to report connecting to other PCs.

NOTE. I actually found the answer. http://www.fiddler2.com/Fiddler/help/hookup.asp#Q-LocalTraffic

+1
fiddler


a source to share


2 answers


You have to add a period (.) After localhost or use the computer name for the URL of the site you want to view traffic for in your browser.

For instance:

http://localhost./foo.html

      



Or:

http://mymachinename/foo.html

      

See here for known documented issues with a fiddler.

+5


a source to share


There is a tab called Filters where you can configure which hosts to ignore.



Hope this helps!

0


a source to share







All Articles