WCF Custom Http Proxy Authentication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:40:07Z http://stackoverflow.com/feeds/question/187001 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/187001/wcf-custom-http-proxy-authentication 1 WCF Custom Http Proxy Authentication Gareth 2008-10-09T12:18:44Z 2008-10-09T14:35:16Z <p>Is it possible to provide WCF with a custom proxy address and custom credentials? </p> <p>I've found this answer on stackoverflow: <a href="http://stackoverflow.com/questions/105499/how-to-set-proxy-with-credentials-to-generated-wcf-client">http://stackoverflow.com/questions/105499/how-to-set-proxy-with-credentials-to-generated-wcf-client</a>, but I've got a complication, the service I'm authenticating against uses its own authentication, so I've got to use two sets of credentials (one to get through the proxy, and the other to authenticate against the service)</p> <p>I'm using the technique described in the answers to the other question to provide the service credentials. e.g.</p> <pre><code>client.ClientCredentials.UserName.UserName = username; client.ClientCredentials.UserName.Password = password; </code></pre> <p>I can set the address of the proxy using something like this:</p> <pre><code>(client.Endpoint.Binding as WSHttpBinding).ProxyAddress = ...; </code></pre> <p>How do I set what is effectively two sets of credentials? (NB: The credentials for the proxy and the actual service are different!) Also note that the proxy details are not necessarily the default system proxy details.</p> http://stackoverflow.com/questions/187001/wcf-custom-http-proxy-authentication/187152#187152 1 Answer by sebastian for WCF Custom Http Proxy Authentication sebastian 2008-10-09T13:02:08Z 2008-10-09T13:02:08Z <p>The client credentials you're setting are fine in order to authenticate to your services.<br /> For proxy authentication you need to use HttpTransportSecurity.ProxyCredentials.</p> <p>This link might help you out.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.httptransportsecurity.proxycredentialtype.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.servicemodel.httptransportsecurity.proxycredentialtype.aspx</a></p> http://stackoverflow.com/questions/187001/wcf-custom-http-proxy-authentication/187548#187548 1 Answer by sebastian for WCF Custom Http Proxy Authentication sebastian 2008-10-09T14:35:16Z 2008-10-09T14:35:16Z <p>From the comments to my answer I guess it is not possible to have different credentials for service authentication and http proxy.</p> <p>that suck! :(</p>