Hi all;
I'm trying to pick up on the HTTP traffic for my WebForms App,
and I'm having some difficulties.
Configuration is as follows:
Windows 8.1, 64-bit
.NET 4.0.30319
Internet Information Services 8.5.9600.16384
Fiddler 4.4.9.4
From what I can gather, I should be able to put the following XML into
machine.config:
====================================================================================
</system.web>
<!-- added 10/26/2014 -->
<system.net>
<defaultproxy enabled="true">
<proxy proxyaddress="http://localhost:8888" bypassonlocal="true">
</proxy>
</defaultproxy>
&nbs ...
Go to the complete details ...