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
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>
|