Capture SOAP Request using Fiddler

Sometimes you are not able to Capture Soap request using fiddler. In that case you have to make some changes in config file.

Add these lines to web.config files:

  1. <system.net>  
  2.    <defaultProxy>  
  3.       <proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />  
  4.    </defaultProxy>  
  5. </system.net>