Thanks Marvin, Your answers were really helpful and I am about to finish this SSO implementation.
so In my Casified Client APP, if I have a logout button what would be the best implementation of the OnClick event of that button? Just what to see if I can make use of the Signout filter in that case. Best Regards, Amr Hassanin -----Original Message----- From: Marvin Addison [mailto:[email protected]] Sent: 09 يناير, 2012 06:43 م To: [email protected] Subject: Re: [cas-user] Single Sign Out Implementation > 1. Does CAS server callback the other signed in services for > invalidating their sessions? Yes. > How does that happen and how can I track it? The server tracks that information so that you should not have to. The server implementation: at logout time, the TGT associated with the authenticated user is retrieved and the logOutOfServices method is called, which iterates over the services map sending a SAML LogoutRequest POST to each one. https://github.com/Jasig/cas/blob/master/cas-server-core/src/main/java/org/jasig/cas/ticket/TicketGrantingTicketImpl.java is a good starting point for source review if you need further information. > 2. Does configuring the Single Sign out filter in the client is > essential for the CAS server callback to work? Yes. That is the component that responds to the SAML LogoutRequest sent by the server. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user ################################################################################################################ DISCLAIMER: This message is for the named person's use only. It may contain confidential information, proprietary in nature or legally privileged information. All trade secret, know how, formulas, researches, database, software, codes diagrams, documentations, attachments, voice, concepts and visual content are strictly protected by United Arab Emirates Laws and Dubai Media Incorporated codes which will have the right to take any legal action if you fail in doing the hereunder steps. If you receive this message in error, please immediately DELETE it and all copies of it from your system, DESTROY any hard copies of it and destroy any soft and backup copy of it saved in any kind of form under you possession and NOTIFY the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message (email) if you are not the intended recipient. ################################################################################################################ -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
