up vote 2 down vote favorite
1
share [g+] share [fb]

I need to consume a WCF service but I'm behind a proxy server and this proxy server requires a username and password.

I can't find a way to set it, if it was a Web Service, I could just do something like

ws.Proxy = myProxyServer;

How can I do this with a WCF service?

thanks!

link|improve this question
Having the answer accepted would be nice, thanks. – Eduardo Scoz Jul 30 '11 at 17:44
feedback

2 Answers

In the WCF binding config, use the useDefaultWebProxy property to make WCF use the windows default proxy (which can be set from IE network config):

<bindings>
<basicHttpBinding>
<binding name="ESBWSSL" ...everything...  useDefaultWebProxy="true">

Then in the code, before you use the connection, do this:

WebProxy wproxy = new WebProxy("new proxy",true);
wproxy.Credentials = new NetworkCredential("user", "pass");

and with your webrequest object, before you execute the call:

WebRequest.DefaultWebProxy = wproxy;

I have not tested the code, but I believe this should work.

link|improve this answer
what about the username and password? – Hans Jun 20 '09 at 22:54
Hi Hans, I just added extra info. Can you try that? I have not used it, but it should work. – Eduardo Scoz Jun 21 '09 at 0:25
3  
@John - actually - yes! I was surprised myself, too - but check out this link here: blogs.msdn.com/stcheng/archive/2008/12/03/… – marc_s Jun 21 '09 at 11:24
1  
Actually you need to set useDefaultWebProxy="false" to use the proxy that you configure – David Jul 13 '10 at 6:29
1  
Thank you, thank you thank you. Is there anything more vile than a network proxy server? Solution above worked perfectly. – Ryan Sorensen Jul 29 '11 at 23:37
show 3 more comments
feedback

Note replaced previous answer based on comment

There was actually another stackoverflow answer that covered setting credentials on a proxy.

http://stackoverflow.com/questions/186800/is-it-possible-to-specify-proxy-credentials-in-your-web-config

link|improve this answer
I think he wants to be able to set authentication for the proxy server. Also, it might help to show how the code would set them: where did "client" come from in your example, for instance? – John Saunders Jun 20 '09 at 23:47
yes.... authentication for the proxy server... – Hans Jun 20 '09 at 23:58
feedback

Your Answer

 
or
required, but never shown