Click here to Skip to main content
15,884,177 members
Articles / Web Development / Apache
Tip/Trick

NetworkCredential and Apache

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
23 Jun 2010CPOL 14.7K   1   1
When sending an HttpWebRequest to an Apache server with login and password, a 401 error is returned
I had some problem getting connected to an Apache server. It returned a 401, not recognizing my credentials.
Hans Liss had a solution to this problem by manually adding credentials to the message header:

HttpWebRequest req = 
    WebRequest.Create("http://www.SomeApacheServer.com") as HttpWebRequest;
req.Method = "POST";
req.Timeout = 500;
NetworkCredential cred = new NetworkCredential("user", "pwd");
req.Credentials = cred;

// Fix http://hans.liss.pp.se/tips/basicauth
string authInfo =
    ((cred.Domain != null) && (cred.Domain.Length > 0) ?
    cred.Domain + @"\" : string.Empty) +
    cred.UserName + ":" + cred.Password;
authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));

req.Headers["Authorization"] = "Basic " + authInfo;
req.PreAuthenticate = true;
req.ServicePoint.Expect100Continue = false;


This tip was useful for me at least. :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Norway Norway
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionLogined or not? Pin
ali_heidari_26-Apr-13 23:57
ali_heidari_26-Apr-13 23:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.