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 = true for 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.

link|improve this question

Using Windows Authentication? – jcolebrand Jul 14 '11 at 21:20
To use a custom membership provider, I believe you can only use Claims / FBA, but I have clarified the original question to indicate that this is claims. – Boris Nikolaevich Jul 14 '11 at 21:25
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.