Skip to content

Instantly share code, notes, and snippets.

@Mpdreamz
Created October 3, 2013 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mpdreamz/6807074 to your computer and use it in GitHub Desktop.
Save Mpdreamz/6807074 to your computer and use it in GitHub Desktop.
default proxy set to fiddler to see web requests initiated by .net application/libraries
<system.net>
<defaultProxy>
<!-- Uncommment this line if you want to see web requests initiated by .NET (think WCF/REST calls)
REMEMBER TO UNDO THIS IF YOU CLOSE FIDDLER!
-->
<!--<proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />-->
<proxy bypassonlocal="False" usesystemdefault="True" />
</defaultProxy>
</system.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment