nunu
nunu

Reputation: 3252

Enable/ Create SSO (Single Sign On) in Asp.Net MVC applications

I want to implement/enable SSO (Single Sign On) on my Asp.Net MVC applications.

Please consider the points below below for your kind suggestions:

Could you please give me your suggestions on it about how would I achieve SSO by considering all above points?

Thanks in advance and all suggestions are welcome!

Upvotes: 3

Views: 9476

Answers (2)

to StackOverflow
to StackOverflow

Reputation: 124696

Are your applications in the same domain? If so, can you use Forms Authentication Across Applications?

Upvotes: 1

Wiktor Zychla
Wiktor Zychla

Reputation: 48230

The suggestion would be to use the IdentityServer (http://thinktecture.github.com/Thinktecture.IdentityServer.v2/), a replacement for ADFS, which uses the same authentication protocol (WS-Federation) but allows you to plugin your custom membership provider.

In addition, the IdentityServer supports some features ADFS lacks and is quite extensible.

Upvotes: 1

Related Questions