How to intercept a service-to-service call in Fiddler2?

On my Windows 7 machine, I have two web applications (WCF host services) hosted under IIS 7.5.

In Fiddler, I can see all the calls from my desktop application to the web application. However, I do not see any call from one service to another or one service calling another website via the Internet.

How to force Fiddler to intercept a service service (Internet service)?

+3
source share
1 answer

Configure the violinist as a proxy server in Internet Explorer - this will make the settings global for the whole machine (Fiddler can do this automatically if you enable it in the settings).

(, ). , :

  • . , , IP- . localhost/127.0.0.1 - .
  • , - , IE,
  • - , , useDefaultWebProxy WCF system.net.

( ):

<system.net>
  <defaultProxy enabled="true" />
</system.net>

HTTP-. HTTPS .

+1

All Articles