Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom handler setup to handle the path /Git.ashx. This handler takes care of all of its own authentication by setting the response code like so:

Dim authHeader As String = ctx.Request.Headers("Authorization")

If String.IsNullOrEmpty(authHeader) Then
    ctx.Response.StatusCode = 401
    ctx.Response.AddHeader("WWW-Authenticate", "Basic")
    Return False
Else
    Try
        Dim userNameAndPassword As String = Encoding.Default.GetString(Convert.FromBase64String(authHeader.Substring(6)))
        Dim parts As String() = userNameAndPassword.Split(":")
        Dim username = parts(0)
        Dim password = parts(1)

        Return Membership.ValidateUser(username, password)
     Catch e As Exception
        Return False
     End Try
End If

If I remove the section from the web.config as stated in this post it works perfectly but I still need most requests to redirect to the login page. Is there a way I can set no redirect when coming from the handler?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.