Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 to sniff that kind of traffic if I am running my web application (it's a ASP.NET website, hosted locally on IIS). I see all the local traffic but the web service traffic is just gone (the service is being hit as I do see the response debugging into the code).

I am still able to successfully sniff soap requests and responses from test fixtures or console apps in the same solution (exact same environment).

If it was a windows (I am on Win7) security update or the likes it would never work I guess (unless it affects only traffic routed through IIS).

What should I be looking for that could cause the emergence this behavior?

Any pointers appreciated!

NOTE: I can see local traffic, but not the SOAP request/responses to the web service which is not hosted locally anyway (it's a sandbox another team is providing)

EDIT: This bit of configuration did the trick (found on Rick Strahl's blog)

  <system.net>
    <defaultProxy>
      <proxy
        usesystemdefault="False"
        bypassonlocal="True"
        proxyaddress="http://127.0.0.1:8888"/>
    </defaultProxy>
  </system.net>
share|improve this question
I just noticed that this is probably a dupe. stackoverflow.com/questions/1937805/… – daub815 May 7 '10 at 2:37
note a dupe - I can see local traffic, but not the SOAP request/responses to the web service which is not hosted locally (it's a sandbox another team is providing) – JohnIdol May 7 '10 at 10:33

5 Answers

up vote 8 down vote accepted

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.fiddler2.com/fiddler/help/hookup.asp#Q-DOTNET

share|improve this answer
Eric - I am getting a Trend Micro warning when trying to access fiddler2.com do you know what that is about? It says "Rating: Dangerous" I thought you should know! – Martin Smith May 7 '10 at 14:36
Looks like "Sunbelt Software" have filed something against the site... stopbadware.org/reports/33738c3a79f677f9224c38c35eb3c309 – Martin Smith May 7 '10 at 15:11
@Eric yes, the client is ASP.NET. I can see all the local traffic (including calls to locally hosted web services) except service calls to other IPs - this started recently. If I run a test harness that I have in the same solution I can still see the soap request/response traffic to another machine I am looking for. – JohnIdol May 7 '10 at 16:14
1  
@JohnIdol: The booleans don't matter for ASP.NET because ASP.NET runs in a different user account. So "UseDefaultProxy" means use the Default Proxy for the ASP.NET user account. But when Fiddler is running, it is the default proxy for YOUR user account, not the ASP.NET account. You must explicitly set the defaultproxy property to point at 127.0.0.1:8888 – EricLaw May 21 '10 at 13:25
1  
setting explicitly the proxy (as per edit) did the trick - thanks for helping! – JohnIdol May 21 '10 at 18:44
show 11 more comments

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.

share|improve this answer
I've got an IP:portNo/mywebservice - web service is not hosted on my local machine – JohnIdol May 7 '10 at 8:59
Didn't knew that Fiddler doesn't capture Localhost traffic. Thanks a lot. – lidermin Apr 15 at 13:29

I ran into this issue a week or so ago. Try this FAQ page: http://www.fiddler2.com/fiddler/help/hookup.asp#Q-LocalTraffic

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

share|improve this answer
I see local traffic but not the SOAP request/responses I am looking for - the web service is not hosted locally (it's a sandbox another team is providing I am accessing through a mirror on lan) – JohnIdol May 7 '10 at 10:36

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

share|improve this answer

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
share|improve this answer
thx, tried firefox and chrome already (it always worked with chrome but when it stopped working I tried with FF and IE) - no difference. Will try again with Win firewall down 1st thing tomorrow and report back. – JohnIdol May 7 '10 at 0:00
Did you try with stopping the windows firewall ? – Prashant May 7 '10 at 14:34
yep - with no luck! – JohnIdol May 7 '10 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.