This is a mirror of official site: http://jasper-net.blogspot.com/

Getting Fiddler to See you WCF Traffic

| Tuesday, April 26, 2011
There are lots of articles on the internet if you search for WCF Fiddler however it’s not clear what the simplest path to follow is. For me, it turns out that just sprinkling a couple lines of code at the bottom of my windows forms app’s app.config file is all it took.  I got the tip from this post:  http://www.fiddler2.com/fiddler/help/hookup.asp
The magic lines are as follows:

    <defaultProxy> 
      <proxy bypassonlocal="false" usesystemdefault="true" /> 
    </defaultProxy> 
  </system.net
</configuration>

That’s it!  Now, Fiddler just sees the traffic.  I’m a happy camper.

image_thumb2.png

Read more: PeterKellner.net

Posted via email from Jasper-net

0 comments: