I\'m getting this error when I call a web service:
\"The remote server returned an error: (407) Proxy Authentication Required\".
I get the general idea and I
HttpWebRequest webRequest = WebRequest.Create(uirTradeStream) as HttpWebRequest; webRequest.Proxy = WebRequest.DefaultWebProxy; webRequest.Credentials = new NetworkCredential("user", "password"); webRequest.Proxy.Credentials = new NetworkCredential("user", "password");
It is successful.