我有一个silverlight应用程序,它发出HTTPS请求,当我在fiddler ON的情况下跟踪应用程序时它工作正常,但是当我没有运行fiddler时它会抛出Remote server not found错误
问问题
4681 次
2 回答
3
我最近遇到了这个问题,在 Fiddler Options->HTTPS 中我检查了“忽略服务器证书错误”。取消选中,Fiddler 显示证书错误。
最后添加了这里提到的代码 http://social.msdn.microsoft.com/Forums/en-US/ncl/thread/43a933b8-e2b1-40a7-ac23-9bf3fc14b1f0
于 2012-08-21T11:01:16.590 回答
0
我们遇到了这个问题,发现 .NET 应用在它们的 machine.config 中添加了一个全局代理覆盖。
在我们的例子中,它是 C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config 文件夹中的 machine.config。
<!-- 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>
于 2017-10-05T23:21:15.787 回答