How should I implement SAMLP 2.0 in an ASP.NET MVC 4 service provider?

前端 未结 4 512
别那么骄傲
别那么骄傲 2020-12-24 14:42

I\'m developing an MVC 4 web application in C# and want to handle login using an existing SAML 2.0 identity provider. I am using HTTP POST binding with SimpleSAMLphp.

<
4条回答
  •  孤独总比滥情好
    2020-12-24 15:25

    You're right in that WIF (now moved into core .NET under System.IdentityModel) only supports the SAML2 tokens and not the SAML2 protocols required to implement a service provider.

    Kentor.AuthServices is an open source 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.

    Disclaimer: I'm the author of Kentor.AuthServices

提交回复
热议问题