OpenId Connect in ASP.NET MVC with legacy backend
Background: To integrate OpenId Connect (henceforth OIDC) in a new ASP.NET MVC application, we can easily use ASP.NET Identity which relies on OWIN. What to do, when you have a legacy ASP.NET MVC application with custom Forms Authentication and identity management taken care by a legacy backend service(SOAP)? I’ll try to describe the process of achieving this kind of integration. Basics Before we get to the nuts and bolts of things promised in this post, lets quickly define some key concepts:
Posted