How do you override the WCF AuthenticationService IsLoggedIn() method?

Posted by Ryan Riley on Stack Overflow See other posts from Stack Overflow or by Ryan Riley
Published on 2010-03-23T02:01:57Z Indexed on 2010/03/23 2:11 UTC
Read the original article Hit count: 547

I have three current thoughts on how to do this:

  1. re-implement AuthenticationService, which uses lots of internal constructors and internal helpers,
  2. implement custom IIdentity and IPrincipal types and somehow hook these into FormsAuthentication.
  3. give up and roll my own.

The problem is that we've got web apps and fat client apps using authentication and storing cookies. However, logging out of a web app does not log out of a fat client app, and we have now way of forcing a refreshed cookie, atm.

© Stack Overflow or respective owner

Related posts about wcf-security

Related posts about formsauthentication