I have a Windows Form app and it keeps returning a 407 Proxy Server error when I try and return a JSON string from the Google servers. I have been led to believe that all I need to do is set the Security Context correctly by setting the WebRequest Credentials as "DefaultCredentials" or "DefaultNetworkCredentials". However, all the methods I have used (see subject tittle) have always returned "".

The annoying thing is that the app works perfectly when running on my machine, published and through VS 2008, but when other users try, it generates the below errror:

System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required.

at System.Net.HttpWebRequest.GetResponse()

Any ideas any one, before I go bald!

Thanks in advance

C

EDIT : Some code as requested. I have tried quite a few variations of the following, none seem to work.

request.Proxy.Credentials = CredentialCache.DefaultCredentials;
HttpWebRequest.Proxy.Credentials = CredentialCache.DefaultCredentials;

OR string url = "http://www.blah.com"; Uri uri = new Uri(url); ICredentials credentials = CredentialCache.DefaultCredentials; NetworkCredential credential = credentials.GetCredential(uri, "Basic");

OR

NetworkCredential credential = CredentialCache.DefaultNetworkCredentials;

INTO

request.Proxy.Credentials = CredentialCache.DefaultCredentials;

OR

request.Credentials = credential

I have also trid both

.DefaultCredentials

And

.DefaultNetworkCredentials
link|improve this question

76% accept rate
feedback

1 Answer

up vote 0 down vote accepted

The credentials returned by DefaultNetworkCredentials represents the authentication credentials for the current security context in which the application is running. For a client-side application, these are usually the Windows credentials (user name, password, and domain) .

Probably the user who is running the application doesn't have the rights on the proxy

link|improve this answer
I checked, and apparently everyone has the same rights as I do. All they need to use it are the UserName/Password/Domain details that i thought the Credentials thing would resolve.... – CatchingMonkey Jul 14 '11 at 10:32
what's happen if instead of using the default user credential you manually set up your credential? – Massimiliano Peluso Jul 14 '11 at 11:04
Well yes I did try that as well, and it still gave the 407 error described in my question on other peoples computers but fine on mine... – CatchingMonkey Jul 14 '11 at 11:07
can you please post your code? Try the following code:stackoverflow.com/questions/6676878/winform-security-context – Massimiliano Peluso Jul 14 '11 at 11:53
As requested. I tried some of the answeres there yesterday, thanks though! – CatchingMonkey Jul 14 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.