Reputation: 602
We are using Single Sign On service provided by a trusted partner. Our application is developed using asp.net mvc 5 framework.
We are facing issue with logout operation.This is our scenario.
Is it possible without making any change in the partner site to force the user to re-enter the credentials?
Upvotes: 0
Views: 1027
Reputation: 1708
The whole point of Single-Sign on is that the user does not need to re-enter credentials for logging into your site. The authentication is handled by your trusted partner site.
As long as your user is signed into your trusted partner site, the site will always return an authenticated ticket. The only way to force the user to enter credentials is to log them off from the trusted partner site as well. Maybe your trusted partner site exposes the API to log users off as well or re-authenticate them?
Upvotes: 1