Pranav
Pranav

Reputation: 31

Active Directory Federation Services Logout

I am using ADFS 3.0 version , with SAML . ADFS authenticates user and send me SAML tokens . But when I logout from ADFS using this URL https://aptifydev2.aptify.com/adfs/ls/?wa=wsignout1.0 I am unable to logout . ADFS shows me you are successfully logout but If I login my application again it does not ask for credentials . All AuthN request and Logout request are signed with certificate.

I can see "MSISSignoutProtocol" cookie is added in browser which is preventing me from Logout.Please let me know how to expire individual session from ADFS.

Upvotes: 0

Views: 1474

Answers (2)

MBill
MBill

Reputation: 41

I know its old thread but to help others, I solved my issue by deleting the JSESSIONID cookie before hitting the ADFS logout URL, so, try deleting your session id cookie and then hit ADFS logout URL

Upvotes: 0

rbrayb
rbrayb

Reputation: 46773

Good discussion here.

The key is that when your app receives wa=wsignoutcleanup1.0, it needs to clear out its own cookies.

Upvotes: 1

Related Questions