Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / Apache

NetworkCredential and Apache

4.50/5 (2 votes)
23 Jun 2010CPOL 15K  
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)