Adam Howitt's Blog

Nov 23
2005

Tweaking Web Applications with Fiddler

Understanding caching, http performance and compression are key to winning the battle to deliver fast internet applications, especially in the context of technologies like AJAX where packets are flying in and out of your browser.  Fiddler is a must for any developer trying to dig down to understand how their web application performs.

There are two great articles on MSN about the software:

Yesterday Digital Media Minute reported the launch of IETab which is a Firefox extension which enables you to view pages in Firefox but with the IE engine.  I was digging around for an explanation of how it works and discovered that because this plugin uses the same HTTP layer - WinInet, you also see the pages requested in Fiddler if you have it open. 

The reason Fiddler doesn't report on Firefox requests out of the box is that it configures the WinInet proxy alone and Firefox has it's own configuration. 

Fiddler monitoring Firefox requests 

If you want to get fiddler to listen to Firefox requests too, go to Tools > Options > Connection > Connection Settings and check "Manual Proxy Configuration", "Use the same proxy for all protocols" and enter 127.0.0.1 port 8888 and click OK.  Note that this will pose problems if you close Fiddler as your proxy is gone, to solve the problem change back to "direct connection to internet".

Comments (Comment Moderation is enabled. Your comment will not appear until approved.)
[Add Comment] [Subscribe to Comments]
  1. http://www.fiddlertool.com/fiddler/help/hookup.asp shows you how to have Firefox "Auto" detect Fiddler.

[Add Comment]