Wednesday, March 25, 2009

Debugging using Fiddler

I have been using Fiddler for a long time. I use fiddler to trace http/https calls to see what is the actual http messages (request - response).

From C#, I typically use the following configuration.

  <system.net>
    <defaultproxy>
      <proxy bypassonlocal="False" usesystemdefault="True" />
    </defaultproxy>
  </system.net>

No comments:

Post a Comment