Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable saml 2.0 sso in asp.net website

We have a website and one of our client want to use saml to authenticate their users and they have an identity provider.

Can someone direct me where to start and what are the things required to intigrate saml in our website.

like image 590
Pavan Teja Avatar asked Nov 26 '14 13:11

Pavan Teja


1 Answers

Kentor.AuthServices is an open source service provider for .NET that is designed to be as simple as possible to use in ASP.NET applications.

There are three nuget packages available

  • Kentor.AuthServices core library and an Http Module for web forms applications.
  • Kentor.AuthServices.Mvc MVC controller for simple setup for MVC applications.
  • Kentor.AuthServices.Owin Owin middleware for modern MVC applications and integration with ASP.NET Identity.

Disclaimer: I'm the author of Kentor.AuthServices, but as it's free, I make no money from people using it.

like image 88
Anders Abel Avatar answered Sep 18 '22 19:09

Anders Abel