Rohit Pandey
Rohit Pandey

Reputation: 119

Single Sign on for .NET

I have been trying to implement a WEB SSO service provider plugin for .NET web applications using C#. I will be using shibboleth Identity provider. I have implemented the same for java applications using OpenSAML library. I want to know which library is used to implement it in .NET applications. Any pointer or suggestion is welcome.

Upvotes: 4

Views: 3905

Answers (3)

Anders Abel
Anders Abel

Reputation: 69280

Kentor.AuthServices (or Kentor.AuthServices.Mvc) for ASP.NET MVC applications is a basic SP implementation for ASP.NET MVC built on top of .NET 4.5. Install the package and add some settings in web.config - no coding required.

The functionality is currently quite limited, so if you have more advanced scenarios it might not be enough (but pull requests are welcome).

Upvotes: 1

user1108948
user1108948

Reputation:

There are no .NET libraries as I know. But there are some projects online you may take a look. Example and basic SSO.

Upvotes: 3

rbrayb
rbrayb

Reputation: 46773

Refer SAML : A SAML stack .

and

SAML : SAML connectivity / toolkit.

There are a number of libraries as above, both open source and commercial.

Or ( just for completeness ) you could go something like WIF --> (WS Federation) --> ADFS --> (SAML) --> Shibboleth

Upvotes: 0

Related Questions