Wednesday, September 01, 2010

Configuring a proxy-server for WCF

To configure a proxy for a specific client/service endpoint, you can configure this on the binding that is used by the endpoint, eg:

<basicHttpBinding>
<binding name="MyClientBinding" proxyAddress="http://gateway:8080" useDefaultWebProxy="false">
</binding>
</basicHttpBinding>

Source: http://blogs.infosupport.com/blogs/porint/archive/2007/08/14/Configuring-a-proxy_2D00_server-for-WCF.aspx

No comments: