On my webserver I have an web app installed and I want to monitor traffic to/from that app.
(在我的网络服务器上,我安装了一个Web应用程序,并且我想监视与该应用程序之间的流量。)
Hence I installed Fiddler. (因此,我安装了Fiddler。)
When I browse to that app from the webserver/through localhost the traffic is captured however when I browse to the web app from a different server no traffic is captured. (当我从Web服务器/通过localhost浏览到该应用程序时,捕获了流量,但是当我从其他服务器浏览到Web应用程序时,没有捕获到流量。)
I tried adding:
(我尝试添加:)
<system.net>
<defaultProxy enabled="true">
<proxy proxyaddress="http://127.0.0.1:8888" bypassonlocal="False"/>
</defaultProxy>
</system.net>
to web.config and to machine.config with no success.
(到web.config和machine.config都没有成功。)
ask by Peter Chikov translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…