This is a migrated thread and some comments may be shown as answers.

Server To Server Tracking

1 Answer 910 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Kevin
Top achievements
Rank 2
Kevin asked on 24 Mar 2021, 06:19 PM

There needs to be better instructions on how to set up tracing of calls from a web server to other services.  I've looked through all the documentation it makes it appear that this is as simple as setting the defaultProxy and viola, you'll get the server-to-server traffic to you so desperately need to see.  Except that it doesn't work.

What has to be done is change the IIS App Pool so that the application runs in the same account as your using to run fiddler.  Then all of the other things that need to happen still need to be changed (adding the Fiddler certificate, defaultProxy, etc.).

1 Answer, 1 is accepted

Sort by
0
Nick Iliev
Telerik team
answered on 25 Mar 2021, 06:55 AM

Hello Kevin,

 

Thank you for your feedback about the need to extend further the Fiddler documentation!

As far as I understood you have a scenario where you need to capture all incoming & outgoing traffic from/to an IIS server. If that is the case, you could check this forum thread for instructions on how to achieve that.

If, however, you are only need to capture traffic from .NET application that uses IIS then you could use the web.config file to set the Fiddler proxy:

<system.net>
  <defaultProxy>
    <proxy  proxyaddress="http://127.0.0.1:8888" />      
  </defaultProxy>
</system.net>

 

Regards,
Nick Iliev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Fiddler Classic
Asked by
Kevin
Top achievements
Rank 2
Answers by
Nick Iliev
Telerik team
Share this question
or