In our organization we have a single sign-on solution which proxies web requests and handles authentication. When a user is authenticated, HTTP headers are injected into the request before it is passed to the content server.
In non-SharePoint ASP.NET applications, we have written a module (implementing IHttpModule) that looks for these special headers.
- When they are detected, sets
IsAuthenticated = truefor our custom principal/identity and populates user attributes. - When they are not detected, the request did not come through the SSO proxy, so the user is presented with a traditional login form, and a custom membership provider handles authentication and populates attributes from a directory.
In a new SharePoint 2010 application using Claims authentication:
- I was able to successfully configure the site to use our custom membership provider
- The custom membership provider is called when I log in using the default login form, and I am able to see the claims that SharePoint calculated when the user was validated.
- I am having trouble figuring out how to bypass login when the SSO headers are present.
How can I inform Sharepoint that the current user is already authenticated and correctly provide the user's identity (and claims?) when I have already parsed the injected headers? And where in the request pipeline should I be doing that?
I am very comfortable with C# or VB.NET, with the ASP.NET request lifecycle, and with custom HTTP modules, but I am new to both Claims Authentication and SharePoint 2010.