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?