Reputation: 11
How to use the Ping Federate with MVC application for Single sign On through SAML2.0. Only client side implementation required because we are using existing Ping Federate Identity Provider(IDP) for authenticating the user via SAML.
Upvotes: 0
Views: 952
Reputation: 356
Another popular approach is to leverage the Windows Identity Foundation (WIF) libraries. Through the web.config, WIF is configured as a WS-Federation connection to PingFederate via the system.identityModel and system.identityModel.services configuration. Then in the application you pick up the identity information via the ClaimsIdentity object.
Upvotes: 1