<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
You could possibly set up a redirect for the logout.jsp to:
<div class=""><br class="">
<div class="">
<div dir="ltr" class="">
<div class="" style="margin: 0cm 0cm 0pt;"><span lang="EN-US" class=""><a href="https://%3cour%20idp%3e/idp/logout.jsp" class=""><font color="#0563c1" face="Calibri" size="3" class="">https://<our IDP>idp/profile/Logout</font></a></span></div>
</div>
</div>
<div class=""><br class="">
</div>
<div class="">Cheers,</div>
<div class="">Aaron</div>
<div class=""><br class="">
<div>
<blockquote type="cite" class="">
<div class="">On 12 May 2017, at 11:34 am, Lalith Jayaweera <<a href="mailto:ljayaweera@gmail.com" class="">ljayaweera@gmail.com</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div dir="ltr" class=""><font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" class=""><font size="3" class=""><font class="">With the existing SPs we have asked them use a URL like below (</font><span lang="EN-US" style="" class=""><a href="https://%3cour%20idp%3e/idp/logout.jsp" class=""><font color="#0563c1" class="">https://<our
 IDP>/idp/logout.jsp</font></a></span></font><font size="3" class="">) with an customized jsp residing in the idp (2.4.x..) with below source. This was due to lack of support on logout and
</font><span class=""><font size="3" class=""> </font></span><font size="3" class="">SLO etc. with prior versions 2.4.x.</font></font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">With IdP 3.2.x rolling out, am curious what would be the best way to rollout without impacting the below logout URL which have been configured in SPs in different ways.</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class="">Also we got CAS on top of IdP but not using CAS SLO, also have doubts whether to use SLO with IdP 3.2.x.</font></div>
<div style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class="">Personally I do not think users should know the status of every SP after the logout rendering in page, even if it does, it should be a backdoor task.</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">Can someone advise me, what would be the best way to move on with the above logout need to perform on IdP 2.4.x</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">Perhaps have this jsp still and release features slowly SLO etc?
</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><span lang="EN-US" style="" class=""><a href="https://%3cour%20idp%3e/idp/logout.jsp" class=""><font color="#0563c1" face="Calibri" size="3" class="">https://<our IDP>/idp/logout.jsp</font></a></span></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">with below source for logout.jsp</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class=""><%</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">Cookie c;</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c = new Cookie("_idp_session", null);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setPath("/idp");</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setMaxAge(0);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setSecure(true);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">response.addCookie(c);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c = new Cookie("JSESSIONID", null);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setPath("/idp");</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setMaxAge(0);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">c.setSecure(true);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">response.addCookie(c);</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">session.invalidate();</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">response.sendRedirect("https://<contentserver>/ssoClientLogoutMsg.html");</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">%></font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">Where
</font><a href="https://<contentserver>/ssoClientLogoutMsg.html" class=""><font color="#0563c1" face="Calibri" size="3" class="">https://<contentserver>/ssoClientLogoutMsg.html</font></a><font face="Calibri" size="3" class=""> gives Generic logout message with
 instruction to close all the browsers.</font></div>
<font face="Times New Roman" size="3" class=""></font>
<p style="margin:0cm 0cm 0pt" class=""><font face="Calibri" size="3" class=""> </font></p>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class="">Thanks</font></div>
<font face="Times New Roman" size="3" class=""></font>
<div style="margin: 0cm 0cm 0pt;" class=""><font face="Calibri" size="3" class=""></font><br class="">
</div>
<font face="Times New Roman" size="3" class=""></font></div>
-- <br class="">
To unsubscribe from this list send an email to <a href="mailto:users-unsubscribe@shibboleth.net" class="">
users-unsubscribe@shibboleth.net</a></div>
</blockquote>
</div>
<br class="">
</div>
</div>
<span style="font-size: 9.0pt; font-family: 'Calibri'; "><em><strong><br>
Important Notice:</strong> The contents of this email are intended solely for the named addressee and are confidential; any unauthorised use, reproduction or storage of the contents is expressly prohibited. If you have received this email in error, please delete
 it and any attachments immediately and advise the sender by return email or telephone.<br>
<br>
Deakin University does not warrant that this email and any attachments are error or virus free.</em></span>
</body>
</html>