HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create("https://www.example.com");
NetworkCredential nc = new NetworkCredential("myname", "mypass");
WebProxy myproxy = new WebProxy("192.168.1.1:8080", false);
myHttpWebRequest.Proxy = myproxy;
myHttpWebRequest.Proxy = WebRequest.DefaultWebProxy;
myHttpWebRequest.Method = "GET";
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
MessageBox.Show("Ok");
I'm using this code to connect with a website (C#.net desktop application). But I'm having this error message:
The remote server returned an error: (407) Proxy Authentication Required.
How can i fix this?
You're currently not using the credentials in the proxy. Here is an example adapted from MSDN of how to use your
NetworkCredential
:When I compiled and ran this complete example:
Of course I used my actual user/pass and proxy for my work account.