I suspect you're right that the JS call to clear the authentication cache is only IE specific. I don't know if there are any compatible APIs for FF or Chrome that would achieve the same results but, if you can intercept the logout redirect, it might be better to redirect the user to a final landing page with instructions to completely close the browser.
There are other things you can do, for instance, to force the browser to reauthenticate and fail with a set of dummy credentials to clear the cache but that's a very unreliable "hack" and certainly not recommended. -Misagh From: St Laurent, Mark [mailto:[email protected]] Sent: Tuesday, March 26, 2013 1:06 PM To: [email protected] Subject: RE: [cas-user] CAS OWA Deep Linking Thanks, Misagh, that was helpful. I think we may have this one fixed. Do you have any ideas on my other request about logging off of CAS from the OWA logoff link? It works in IE, but not in Chrome or Firefox, I'm guessing because IE uses the document.execCommand("ClearAuthenticationCache") call, while that isn't present in the other browsers. Any ideas on that? Thanks, ---------------------------------- Mark St. Laurent Web Systems Administrator Yavapai College (928) 717-7654 http://www.yc.edu <http://www.yc.edu/> From: Misagh Moayyed [mailto:[email protected]] Sent: Tuesday, March 26, 2013 2:14 AM To: [email protected] Subject: RE: [cas-user] CAS OWA Deep Linking Looks like the redirect url is taken from a 'Location' header unless you have it statically defined in the config. You should be able to capture the data associated with the deep link and append it to the redirect url with a little bit of code. See this please: https://github.com/Unicon/cas-owa-2010/blob/master/CasOwaAuthHandler.cs#L2 40 -Misagh From: St Laurent, Mark [mailto:[email protected]] Sent: Monday, March 25, 2013 1:46 PM To: [email protected] Subject: [cas-user] CAS OWA Deep Linking Hi everyone, Another quick question: Has anyone had any luck creating deep links to Outlook Web Access mail items through CAS? We've tried, but the CAS OWA client appears to strip the deep link information from the URL when it logs the user in. Any help would be appreciated. Thanks, ---------------------------------- Mark St. Laurent Web Systems Administrator Yavapai College (928) 717-7654 http://www.yc.edu <http://www.yc.edu/> -- 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 -- 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 -- 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 -- 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
