Fiddler not sniffing SOAP traffic from ASP.NET website

后端 未结 6 639
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-30 13:32

So far I\'ve been successfully using fiddler to sniff web service traffic from both test fixtures, console apps and web projects.

Today I noticed I am not able anymore t

相关标签:
6条回答
  • 2021-01-30 13:45

    You're probably using a port other than 80 for these http requests. I remember setting up a reverse proxy to look at WCF requests I was making on my local machine during dev. Here's the documentation: http://www.fiddlertool.com/fiddler/help/reverseproxy.asp

    0 讨论(0)
  • 2021-01-30 13:58

    What's the client of the web service? ASP.NET?

    ASP.NET traffic isn't proxied unless you configure ASP.NET to use a proxy. It's possible/likely that the app.config or machine.config changed such that traffic is no longer getting proxied?

    You should have a look at this section: http://www.fiddlerbook.com/fiddler/help/hookup.asp#Q-DOTNET

    0 讨论(0)
  • 2021-01-30 14:02

    I ran into this issue a week or so ago. Try this page: http://docs.telerik.com/fiddler/Observe-Traffic/Troubleshooting/NoTrafficToLocalhosthttp://www.fiddler2.com/fiddler/help/hookup.asp#Q-LocalTraffic

    The ipv4.fiddler was the part that worked for me. Hope this helps.

    0 讨论(0)
  • 2021-01-30 14:05

    If you want to view the http traffic between your web site and your web service on your development machine, and don't want to change your machine.config.

    One easy solution is to change the Application Pool Identity of your web site to use your own credentials of the current logged on user. This means that your web site will adopt your proxy settings and will now redirect to Fiddler.

    0 讨论(0)
  • 2021-01-30 14:05

    Make sure the web service you are calling (from IE) is not http://localhost/yourwebservice

    Fiddler will not intercept localhost traffic from IE, use http://machinename/yourwebservice instead.

    0 讨论(0)
  • 2021-01-30 14:07

    Can you try the following -

    1. Try stopping the windows firewall and see what happens
    2. try using firefox and redirecting traffic to fiddler and see what happens
    0 讨论(0)
提交回复
热议问题