how to logout after getting authenticated by single sign on provider?

Go To StackoverFlow.com

3

I am trying to provide authentication facility through third party single sign on provider like rpxnow. After login on every refresh of page I am not able to retrieve the cookies set by the provider so that I can delete them when user desires to log out? Is there any other way to gracefully logout the user without trying to search for cookies etc., or releasing the token provided by them after authentication?

2009-06-16 07:49
by dhaval
looks like you're not the only one to ask... http://rpxwiki.com/Help#comment124450697 - Jeffrey Kemp 2009-06-17 04:09
true i saw there and came here - dhaval 2009-06-17 17:27
Anyone have an answer yet - Peter Sankauskas 2009-08-01 00:23


0

I had a workaround. I stored the token retrieved from single sign on site and onclick of logout deleted the token. Every call handler for each page was initiated by checking for validating for token variable in session.

2009-08-02 10:03
by dhaval
Ads