I have an ASP.NET website with an STS reference to a standalone ADFS 2.0 server. The web.config is set to use forms authentication. I have overridden the OnEndRequest method of the WSFederationAuthentication http module. In my custom http module, I can set the status code as 302 (to redirect to the Login.aspx page) or 401 (to redirect to the ADFS endpoint for authentication). My issue is that after I authenticate using ADFS, I am not taken to the Default.aspx page. Instead, I am shown an automatically generated page (by asp.net I assume) that says "Object moved to here." If I click "here," I am served up Default.aspx. Does anyone know what can be causing this? When I switch the site to authenticate by ADFS alone, and use the default WSFederationAuthentication http module, the Default.aspx content is served up after authentication exactly as it should be. It's only when I manually set the status code to 401, that this seems to be a problem. Here some sample code from the custom http module.
protected override void OnEndRequest(object sender, EvenArgs args)
{
HttpApplication application = (HttpApplication)sender;
if(application.Response.StatusCode == 302)
{
application.Response.StatusCode = 401;
base.OnEndRequest(sender, args);
return;
}
}