<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri Light" size="2"><span style="font-size:11pt;">
<div>Hi Dan,</div>
<div> </div>
<div>You could work around this issue:</div>
<div> </div>
<div>> We have a few use cases for this.  The one we are getting the most push back for now that it no longer works is this....</div>
<div>> We have a kiosk computer in an office where users log in, fill out a form, then log out.  They really want the browser to end up back on the form page but logged out</div>
<div>> so when the next user gets to the computer it is all set for</div>
<div>> them.  With our old CAS server, this worked well for them.</div>
<div> </div>
<div>If you have control over the application running on the kiosk computer you can add the following javascript to the logout button (I assume there is some kind of logout button):</div>
<div><i>var xmlhttp = </i><i>new XMLHTTPRequest</i><i>();</i></div>
<div><i>xmlhttp.open("GET", "/Shibboleth.sso/Logout", true);</i></div>
<div><i>xmlhttp.send();</i></div>
<div><i>xmlhttp.onreadystatechange = function()</i></div>
<div><i>{</i></div>
<div><i>   </i><i>if(xmlhttp.readyState == 4 && xmlhttp.status == 200)</i></div>
<div><i>   </i><i>   </i><i>{</i></div>
<div><i>      </i><i>   </i><i>location.reload();</i></div>
<div><i>      }</i></div>
<div><i>};</i></div>
<div> </div>
<div>I did this on an application we are running and it works like a charm. Hope that could be a valid option for you.</div>
<div> </div>
<div>Regards,</div>
<div>Kevin</div>
<div> </div>
</span></font>
</body>
</html>