I have been working on a web site (using ASP.NET C#) that uses both forms based and claims based authentication. I wanted to override the ClaimsIdentity class so I could implement a custom IsAuthenticated method and add more properties for the identity specific for the claims authentication.

I'm implementing a custom WSFederationAuthentionModule currently, but I was trying to figure out what module I should override (specifically what method) so I can set my custom identity/principal rather than the default ClaimsPrincipal?

So far I have looked at both the SessionAuthenticationModule and ClaimsPrincipalHTTPModule, but I could not figure out at what step the principal is set/the best way to override it.

Thanks

Addition: Since I'm kind of new at this let me be sure this is correct: The way to set an identity is to set a custom principal which is set to use that identity:

System.Threading.Thread.CurrentPrincipal = customClaimsPrincipal;

Alternatively if a custom principal was not needed then the ClaimPrincipal class could be constructed with a ClaimsIdentityCollection.

link|improve this question

60% accept rate
Why would you not do this in the Application_AuthenticateRequest event in Global.asax? (I've not used claims authentication, but have used forms and written custom IIdentity etc..) – jwwishart Mar 30 '11 at 12:06
I didn't want to do this because I want to only change the Identity when claims authentication is used. Also, I'm not particularly fond of putting things in the Global.asax because I need to keep code within HttpModules for extendability for other sites that are going to have to do the same thing. I'm new to this and not entirely positive, but it is my understanding that I should make sure that the other principle that is set (by SessionAuthentionModule, I think) is not set and only my custom principle/identity exist. – kachingy123 Mar 30 '11 at 12:53
Ever figure this out? – Langdon Feb 2 at 19:32
feedback

1 Answer

You're correct in that HttpModules are the way to go in terms of extensibility, but make sure that whatever logic you implement doesn't inhibit the performance of your application. I've had websites go thoroughly berserk performance-wise after adding too many HttpModules to the application. It might be worth caching results of your queries, depending on what auth model you're using.

You need to figure out under what conditions you need to use your custom ClaimsPrincipal. Until you do this you're stabbing in the dark. Are there specific URLs for which you need claims authentication?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.