In c# 4.0, I have a web service called ManufacturerContactDetails. I am calling that web service from a windows app using the following:
var ws = new Manufacture
Try adding this to app.config file.
<system.net>
<defaultProxy enabled="false" useDefaultCredentials="false">
<proxy/>
</defaultProxy>
</system.net>
Add proxy in the proxy tag. Use the default proxy tag in the system.net setting in the app.config.
Create the app config file containing the following
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy usesystemdefault="True" bypassonlocal="True"/>
</defaultProxy>
</system.net>
More info here http://blogs.infosupport.com/blogs/porint/archive/2007/08/14/Configuring-a-proxy_2D00_server-for-WCF.aspx
Bye
Add this to your app.config or web.config:
<system.net>
<defaultProxy enabled="true">
<proxy proxyaddress="http://111.222.333.444:80"/>
</defaultProxy>
</system.net>
If this is a WCF client there is no Proxy property. You could try this instead:
var proxy = new WebProxy("proxy.foo.com", true);
proxy.Credentials = new NetworkCredential("user", "pass");
WebRequest.DefaultWebProxy = proxy;
and then do the call:
using (var ws = new ManufacturerContactDetailsWebServiceSoapClient())
{
var cd = ws.GetContactDetails("Google");
}