2014-11-16 7 views
2
나는 시도하고 사용자 지정 HTTP 모듈을 만들려면 아래 this post의 코드를 사용하고

:의 HTTP 모듈 인증

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 오류를 만들기에서 작품을 좋아

하지만 올바른 로그인 세부 정보가 입력되면 로그인 대화 상자가 사라지지 않습니다.

코드를 디버깅 할 때 대화 상자의 확인 버튼을 클릭해도 이벤트가 트리거되지 않고 사용자 세부 정보의 유효성이 검사되지 않으면 아무 것도 작동하지 않는 이유를 알 수 없습니다.

도움이나 아이디어를 제공해 주시면 감사하겠습니다.

답변

3

Microsoft의 asp.net 웹 사이트에는 good example on how to do custom authentication이 있습니다. 그것이 WebAPI에 관한 것이라는 사실을 무시하십시오. 이 코드는 IHttpModule을 사용하므로 WebForms, IHttpHandler, asmx, WCF 및 IIS에서 실행되는 다른 모든 항목과 함께 사용할 수 있습니다. 해당 페이지 끝의 코드를 복사하여 새 프로젝트에 붙여 넣으면됩니다. 하지만, 샘플처럼, 스레드의 CurrentPrincipal을 인증 된 사용자로 설정하는 것을 권장하지 않습니다. 나는 현재 컨텍스트의 User 속성을 사용하는 것을 선호한다.

모듈의 중단 점이 적중하지 않으면 http 모듈이 올바르게 등록되지 않았기 때문에 거의 확실합니다. 위에 링크 된 asp.net 페이지는 web.config 파일에 모듈을 등록하는 방법을 보여 주므로 시작해야합니다. Visual Studio의 Intellisense 자동 완성 기능을 사용하여 클래스 이름을 완성 할 수 있어야합니다. 그러면 Resharper가 내 컴퓨터에서이 작업을 수행 할 수있는 기회가 있지만 실제로는 일반 Visual Studio 일 것입니다. .