Skip to content

Instantly share code, notes, and snippets.

@tomas-rampas
Created November 10, 2014 07:27
Show Gist options
  • Save tomas-rampas/b4fa5da1c146be53187f to your computer and use it in GitHub Desktop.
Save tomas-rampas/b4fa5da1c146be53187f to your computer and use it in GitHub Desktop.
Proxying WCF service
<!--
Part of WCF application host config file
WCF communication is proxying via locahost:8888
-->
<system.net>
<defaultProxy enabled = "true" useDefaultCredentials = "true">
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
</system.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment