我使用Visual Studio 2017运行Web服务并使用SoapUI来调用该服务。我已经能够在SoapUI中更新代理以使用127.0.0.1:8888来查看来自SoapUI的请求命中我的Web服务。我使用Fiddler捕获这些请求
然后,Web服务进行几次数据库调用,REST服务调用和套接字连接。我尝试使用以下内容更新machine.config和Web.config:
<!-- The following section is to force use of Fiddler for all applications, including those running in service accounts -->
<system.net>
<defaultProxy
enabled = "true"
useDefaultCredentials = "true">
<proxy autoDetect="False" bypassonlocal="False" proxyaddress="http://127.0.0.1:8888" usesystemdefault="False" />
</defaultProxy>
但我从来没有在Fiddler看过任何请求。我也使用Windows 10.我已经看到了必须更改IIS应用程序服务器的用户ID的参考,但是还没有找到关于如何在启动IIS Express时更改用户的参考视觉工作室。另外我的理解是Web.Config更改是我需要做的所有事情,但是想要一些确认,因为它不起作用。我还重新启动了所有内容,并在调试服务时仍然没有捕获任何内容。
我是否能够看到此流量(SQL,REST调用,套接字连接),如果是这样,我做错了什么?