vote up 1 vote down star
1

Is it possible to provide WCF with a custom proxy address and custom credentials?

I've found this answer on stackoverflow: http://stackoverflow.com/questions/105499/how-to-set-proxy-with-credentials-to-generated-wcf-client, 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)

I'm using the technique described in the answers to the other question to provide the service credentials. e.g.

client.ClientCredentials.UserName.UserName = username;
client.ClientCredentials.UserName.Password = password;

I can set the address of the proxy using something like this:

(client.Endpoint.Binding as WSHttpBinding).ProxyAddress = ...;

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.

flag

2 Answers

vote up 1 vote down check

From the comments to my answer I guess it is not possible to have different credentials for service authentication and http proxy.

that suck! :(

link|flag
ye. oh well. We're going with a "Use the default system proxy" or "Use no proxy" option... Thanks for your help! – Gareth Oct 9 '08 at 14:41
vote up 1 vote down

The client credentials you're setting are fine in order to authenticate to your services.
For proxy authentication you need to use HttpTransportSecurity.ProxyCredentials.

This link might help you out.

http://msdn.microsoft.com/en-us/library/system.servicemodel.httptransportsecurity.proxycredentialtype.aspx

link|flag
Ye, I saw that. Problem is that I cannot find anywhere to set my username / password for the proxy, thats just an enum of authentication types... – Gareth Oct 9 '08 at 13:24
I haven't tried but for I saw you can set it to take your default proxy credentials, the one you have set in IE – sebastian Oct 9 '08 at 13:45
typed too fast :) I have no tried it, but for what I saw... – sebastian Oct 9 '08 at 14:01
agreed, and that works. we're wanting to use credentials the user has typed in... (i.e. the user has typed in 2 sets of credentials) – Gareth Oct 9 '08 at 14:06
hmm, reading this webpage, it seems that its not possible: kennyw.com/indigo/143 – Gareth Oct 9 '08 at 14:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.