4

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.

Rohit Pandey
  • 119
  • 4
  • 15
  • 1
    http://stackoverflow.com/questions/1211431/how-to-implement-single-sign-on-in-net –  Feb 26 '14 at 18:13
  • This is not what I'm looking for. I saw this question before. I have the understanding of how single sign on works. What I actually want to know is if there are any libraries in .NET like OpenSAML in java which can be used to implement it. – Rohit Pandey Feb 26 '14 at 18:31

3 Answers3

3

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

Community
  • 1
  • 1
1

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).

Anders Abel
  • 67,989
  • 17
  • 150
  • 217
  • I saw this and installed it but I cannot use already implemented one. I have to implement it myself. – Rohit Pandey Feb 27 '14 at 09:20
  • I'd be happy to know why you cannot use it to be able to improve it, if possible please add one or more issue on the [github repo](https://github.com/KentorIT/authservices) to describe the issues. – Anders Abel Feb 27 '14 at 09:21
0

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

rbrayb
  • 46,440
  • 34
  • 114
  • 174