-1

I am starting a project to link ID4 or ID3 to a number of .Net Web Applications to support SSO across them using OIDC where they vary in Technology maturity.

The one I am having some trouble with is a .Net 4.5 WebForms application which does not have OWIN support currently. I am wondering what is the best approach to integrate it with ID4 or ID3.

I have been considering doing a method such as the following but I am sure there are better ways to do this: https://leastprivilege.com/2014/06/10/writing-an-openid-connect-web-client-from-scratch/

Regards, Barry

1 Answers1

0

Owin package, doesn't have any dependencies, so you can go straight forward and add it to your Web Forms application. This is the best/easiest approach.

Then the next thing you need is the IdentityServer3.AccessTokenValidation package (because you are using .Net Framework app).

From this point on, it doesn't matter which version of Identity Server you will choose. Both of them will be suitable for you, however I, and I'm sure many others, recommend you to use Identity Server 4.

m3n7alsnak3
  • 3,026
  • 1
  • 15
  • 24