Archive for October, 2008

Mark Pilgrim’s Essentials, 2008

Tuesday, October 28th, 2008

Mark’s latest list of software he considers essential for a Linux desktop.

Using Fiddler to Capture Web Traffic from an Application Running Under IIS

Tuesday, October 28th, 2008

Just add the following to the web.config file for the application:

<system.net>
 <defaultProxy>
  <proxy proxyaddress="http://127.0.0.1:8888" />
 </defaultProxy>
</system.net>

Thanks to Rick Strahl.

Get Fiddler here.