public class BasicAuthenticationModule: IHttpModule
{
public void Init(HttpApplication application)
{
application.AuthenticateRequest += new EventHandler(Do_Authentication);
}
private void Do_Authentication(object sender, EventArgs e)
{
var request = HttpContext.Current.Request;
string header = request.Headers["HTTP_AUTHORIZATION"];
if(header != null && header.StartsWith("Basic "))
{
// Header is good, let's check username and password
string username = DecodeFromHeader(header, "username");
string password = DecodeFromHeader(header, password);
if(Validate(username, password)
{
// Create a custom IPrincipal object to carry the user's identity
HttpContext.Current.User = new BasicPrincipal(username);
}
else
{
Protect();
}
}
else
{
Protect();
}
}
private void Protect()
{
response.StatusCode = 401;
response.Headers.Add("WWW-Authenticate", "Basic realm=\"Test\"");
response.Write("You must authenticate");
response.End();
}
private void DecodeFromHeader()
{
// Figure this out based on spec
// It's basically base 64 decode and split on the :
throw new NotImplementedException();
}
private bool Validate(string username, string password)
{
return (username == "foo" && pasword == "bar");
}
public void Dispose() {}
public class BasicPrincipal : IPrincipal
{
// Implement simple class to hold the user's identity
}
}
코드는 서버와 로그인 대화 대중에 의해 반환 될 401 오류를 만들기에서 작품을 좋아
하지만 올바른 로그인 세부 정보가 입력되면 로그인 대화 상자가 사라지지 않습니다.
코드를 디버깅 할 때 대화 상자의 확인 버튼을 클릭해도 이벤트가 트리거되지 않고 사용자 세부 정보의 유효성이 검사되지 않으면 아무 것도 작동하지 않는 이유를 알 수 없습니다.
도움이나 아이디어를 제공해 주시면 감사하겠습니다.