How can I get the "Realm" message sent in the WWW-Authenticate header by a server requesting HTTP Basic authentication?

link|improve this question

75% accept rate
1  
Reiterating the title doesn't really help. Can you please go into a bit more detail? – minitech Dec 8 '11 at 19:57
it's clear enough . i get the help i want . thanks – T4mer Dec 10 '11 at 0:23
feedback

closed as not a real question by minitech, DaveShaw, Kyle Trauberman, casperOne Dec 9 '11 at 3:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

Not really sure what the issue the down-voters have with this question really is.

Here's the rough code to get the WWW-Authenticate header that contains the Basic authentication realm. Extracting the actual realm value from the header is left as an exercise, but should be quite straightforward (e.g. using regular expression).

public static string GetRealm(string url)
{
    var request = (HttpWebRequest)WebRequest.Create(url);
    try
    {
        using (request.GetResponse())
        {
            return null;
        }
    }
    catch (WebException e)
    {
        if (e.Response == null) return null;
        var auth = e.Response.Headers[HttpResponseHeader.WwwAuthenticate];
        if (auth == null) return null;
        // Example auth value:
        // Basic realm="Some realm"
        return ...Extract the value of "realm" here (with a regex perhaps)...
    }
}
link|improve this answer
that's really help. thanks a lot – T4mer Dec 10 '11 at 0:20
feedback

I'm assuming you want to create a Web Request with Basic Authentication.

If that's the correct assumption, the following code is what you need:

// Create a request to a URL
WebRequest myReq = WebRequest.Create(url);
string usernamePassword = "username:password";
//Use the CredentialCache so we can attach the authentication to the request
CredentialCache mycache = new CredentialCache();
mycache.Add(new Uri(url), "Basic", new NetworkCredential("username", "password"));
myReq.Credentials = mycache;
myReq.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(new ASCIIEncoding().GetBytes(usernamePassword)));
//Send and receive the response
WebResponse wr = myReq.GetResponse();
Stream receiveStream = wr.GetResponseStream();
StreamReader reader = new StreamReader(receiveStream, Encoding.UTF8);
string content = reader.ReadToEnd();
link|improve this answer
feedback

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