tags:

views:

99

answers:

1

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?

A: 

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.

dhaval