My computer have a proxy server defined globally (in internet options configuration).
I have a .Net 4 application that use a WCF client to a remote host. The client code has been generated by VS add service reference dialog. As my proxy can't reach the host, each call ends with a communication exception.
How can I set up my client configuration to not use the default proxy ?
In your Binding configuration, set useDefaultWebProxy=false
You can tell WCF not to use the default proxy by setting the BasicHttpBinding.UseDefaultWebProxy to
false
: