I have an assembly that acts as a custom HttpHandler (implements IHttpHandler and is registered with an block in web.config) that I'd like to have provide openid provider functionality. In looking at the DotNetOpenAuth samples, I've modeled my handler after the OpenIdOfflineProvider - as this sample is (at its roots at least) a simple HttpListener with all provider functionality in code. I am at the point where i can provide my url to a relying party (the webforms sample rp) and see the IAuthenticationRequest. If i set IAuthenticationRequest.IsAuthenticated = true, then authentication succeeds.
However - at this point I'd like to redirect the user to a custom page for login (as i require more than simple username/password) before setting IAuthenticationRequest.IsAuthenticated accordingly. I attempted to do this the 'web forms' way with this:
private void DoAuthentication(IAuthenticationRequest request, HttpContext context)
{
if (context.Request.IsAuthenticated)
{
request.IsAuthenticated = true;
}
else
{
FormsAuthentication.RedirectToLoginPage();
}
}
This works in-so-much as the client browser does get redirected and the user can login, effectively setting the forms authentication cookie, but when the login page does a FormsAuthentication.RedirectFromLoginPage() it feels like all context is lost (i just see the /provider page and IAuthenticateRequest is null). At this point, as you'd expect, with the cookie set, if I resubmit my url to a relying party, things work correctly and authentication succeeds.
Is there a way to maintain context necessary so that this can work? Or another way to effectively require a user to hit a form page before the IAuthenticationRequest is handled?