Home > database >  Application works with fiddler ON and doesn't works without fiddler?
Application works with fiddler ON and doesn't works without fiddler?

Time:12-25

I have a silverlight application it makes HTTPS request, it works fine when I am tracing the application with fiddler ON, But it throws Remote server not found error when I don't have fiddler running

CodePudding user response:

I ran into this recently, in Fiddler Options->HTTPS I had 'ignore server certificate errors' checked. Unchecked that and Fiddler displayed a certificate error.

Ended up adding the code mentioned here http://social.msdn.microsoft.com/Forums/en-US/ncl/thread/43a933b8-e2b1-40a7-ac23-9bf3fc14b1f0

CodePudding user response:

We had this problem and found that .NET apps had a global proxy override added in their machine.config.

In our case it was the machine.config in the C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config folder.

<!-- The following section is to force use of Fiddler for all applications, including those running in service accounts -->
    <!-- C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config -->

<defaultProxy
    enabled = "true"
    useDefaultCredentials = "true">
    <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
  • Related