Created
October 3, 2013 08:44
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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