Derin
Derin

Reputation: 1230

Azure Single Sign-On using SAML 2.0 Protocol and ASP.NET C#

I want to implement Azure AD Single Sign-On using SAML 2.0 Protocol and ASP.NET C#.

According to the below documentation we have to make a 'AuthnRequest' with certain parameters and process the 'Response'.

Possible to use any particualr assembly to process the saml request and response? [like owin or onelogin]

It will be really helpful, if someone can provide me a sample application.

https://learn.microsoft.com/en-us/azure/active-directory/develop/single-sign-on-saml-protocol

enter image description here

Upvotes: 0

Views: 3397

Answers (2)

agascon
agascon

Reputation: 785

I understand you are asking for some assembly/component which would process the SAML response.

I have coded a similar setup, based on the .NET Oracle OpenSSO fedlet, which even is closed source as-of-now you can find some some repos containing a fork for the original open source code.

These solutions will require further work on your side, but it's a good start point.

Hope this help you and feel free to ask more specific questions.

Upvotes: 0

Mohit Verma
Mohit Verma

Reputation: 5294

There is no official SDK for the same from MS but you can refer below link for implementation:

 https://nzpcmad.blogspot.com/2013/06/saml-saml-connectivity-toolkit.html
 https://github.com/onelogin

Hope it helps.

Upvotes: 1

Related Questions