Welcome, guest | Sign In | My Account | Store | Cart

Sometimes capturing WCF service communication e.g. with Fiddler is necessary. Following is the part of WCF service application config proxying WCF to localhost:8888

XML, 5 lines
1
2
3
4
5
<system.net>
  <defaultProxy enabled = "true" useDefaultCredentials = "true">
   <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888"    usesystemdefault="false" />
  </defaultProxy>
</system.net>
Created by Tomáš Rampas on Fri, 7 Nov 2014 (MIT)
XML recipes (3)
Tomáš Rampas's recipes (3)

Required Modules

  • (none specified)

Other Information and Tasks