Fdramn
Fdramn

Reputation: 11

Custom STS with Windows Identity Foundation (.NET 4.5)

I need to implement a custom STS with Visual Studio 2012 with a login page for SSO (and SSOut) with different web applications (with different permissions, claims and .NET fxs, 3.5, 4.0 y 4.5). Can you help me to achieve this thing? Any advice is welcome.

Upvotes: 1

Views: 7182

Answers (2)

rbrayb
rbrayb

Reputation: 46700

Did you have a look at the Identity and Access Tool? It has a number of samples.

Haven't tried it myself and there were problems with VS 2012 but that's apparently been fixed.

Upvotes: 0

Wiktor Zychla
Wiktor Zychla

Reputation: 48230

There are tons of examples available. I wrote one tutorial once:

http://netpl.blogspot.com/2011/08/quest-for-customizing-adfs-sign-in-web.html

It is worth to mention that while SSO is rather straightforward, you'll have to take care of the single sign-out also. And this is not-so-well documented. Here is how to do it:

http://netpl.blogspot.com/2010/12/wif-ws-federation-and-single-sign-out.html

http://netpl.blogspot.com/2011/05/wif-ws-federation-and-single-sign-out.html

Note also that some people could probably vote to close your question as it is too broad. You should rather ask about specific issues.

Upvotes: 3

Related Questions