I am having a strange problem with the WIF ClaimsAuthenticationManager. I registered the custom implementation of ClaimsAuthenticationManager in the web.config file:
<identityConfiguration> <claimsAuthenticationManager type="<namespace>.CustomClaimsTransformer,<assembly>" /> <claimsAuthorizationManager type="<namespace>.CustomAuthorisationManager,<assembly>" /> ....
When I run the application in IISExpress, the ClaimsAuthenticationManager authentication method is called. However, it has not been called since I deployed the application on IIS 7.5.
Is there any configuration that needs to be done?
ppoliani
source share