I'm trying to use HTTPWebRequest to access a web service, and am having problems passing credentials in, see code below. I can see the credentials object, nc, being built in the debugger, and also in the assignment to request.Credentials, but when I get to the last line of code it faults with a not authorized error message. I've had our server folks watch the request on the server, and there are no credentials being passed. Am I doing something wrong with the Credentials object, or is there something I need to do that I'm not doing here?

    Uri requestUri = null;
    Uri.TryCreate("https://mywebserver/webpage"), 
        UriKind.Absolute, out requestUri);

    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create
        (requestUri);

    NetworkCredential nc =
        new NetworkCredential("user", "password");

    request.Credentials = nc;

    request.Method = WebRequestMethods.Http.Get;
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
link|improve this question

1  
Have you used Fiddler to see for yourself what you're passing? I dislike relying on server folks to evaluate things like this :) – JustLoren Nov 5 '09 at 20:36
JustLoren - I didn't know about Fiddler until you posted this comment, I downloaded it and under the Auth tab it says No Proxy-Authorization Header is present. No Authorization Header is present, so I'm still thinking there is something wrong with my code. – Russ Clark Nov 5 '09 at 21:26
Is there a reason you're not generating a proxy class to call an internal web service? – kd7 Nov 9 '09 at 21:43
Yes, the service I'm calling is a REST service so there is no wsdl file. – Russ Clark Nov 10 '09 at 13:17
feedback

3 Answers

up vote 1 down vote accepted

Microsoft Premier Support finally helped me solve this problem by using the CredentialCache class to add the Credentials and the "Basic" authorization:

    NetworkCredential nc =
        new NetworkCredential(GetSetting("username"), GetSetting("password"));
    CredentialCache cache = new CredentialCache();

    cache.Add(requestUri, "Basic", nc);

    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(requestUri);
link|improve this answer
feedback

The NetworkCredentials are either extremely non-intuitive, or flaky, or both. Regardless, you can solve the issue by bypassing NetworkCredentials altogether and use this method (which I found, courtesy of mark.michaelis.net)

/* http://mark.michaelis.net/Blog/CallingWebServicesUsingBasicAuthentication.aspx */
byte[] credentialBuffer = new UTF8Encoding().GetBytes(username + ":" +password);
req.Headers["Authorization"] ="Basic " + Convert.ToBase64String(credentialBuffer);

So what you're doing is manually creating a header for your HttpWebRequest and inserting the content as it would appear in a Basic Authentication header. Works like a charm.

link|improve this answer
feedback

What form of security is the target server implementing? If you just paste the URL in your browser does it work OK? If it works, what is the browser posting that your app is not?

You're not setting request.UseDefaultCredentials anywhere... ?

link|improve this answer
It's an https site so it is using SSL. I just found out yesterday that the NetworkCredential class does not support SSL, and that is causing my problem. Does request.UseDefaultCredentials pass the users own credentials rather than using the NetworkCredentials class to pass in credentials? – Russ Clark Nov 10 '09 at 13:19
I believe it will pass the credentials of whatever user account is running the ASP.NET process... or possibly the credentials of the logged in user if you are using Windows authentication. Try a search for "SSL HttpWebRequest", I'm sure this is possible. – Bryan Nov 10 '09 at 20:52
feedback

Your Answer

 
or
required, but never shown

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