具體通知由org.jasig.cas.authentication.principal.AbstractWebApplicationService發出。logOutOfService方法生成發送消息,而後由org.jasig.cas.util.HttpClient的sendMessageToEndPoint方法發出。
public boolean sendMessageToEndPoint(final String url, final String message) {
HttpURLConnection connection = null;
BufferedReader in = null;
try {
if (log.isDebugEnabled()) {
log.debug("Attempting to access " + url);
}
final URL logoutUrl = new URL(url);
final String output = "logoutRequest=" + URLEncoder.encode(message, "UTF-8");html
connection = (HttpURLConnection) logoutUrl.openConnection();
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setReadTimeout(this.readTimeout);
connection.setConnectTimeout(this.connectionTimeout);
connection.setRequestProperty("Content-Length", ""
+ Integer.toString(output.getBytes().length));
connection.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded");
final DataOutputStream printout = new DataOutputStream(connection
.getOutputStream());
printout.writeBytes(output);
printout.flush();
printout.close();web
in = new BufferedReader(new InputStreamReader(connection
.getInputStream()));數據庫
while (in.readLine() != null) {
// nothing to do
}
if (log.isDebugEnabled()) {
log.debug("Finished sending message to" + url);
}
return true;
} catch (final Exception e) {
log.error(e,e);
return false;
} finally {
if (in != null) {
try {
in.close();
} catch (final IOException e) {
// can't do anything
}
}
if (connection != null) {
connection.disconnect();
}
}
}瀏覽器
http://blog.csdn.net/redstarofsleep/article/details/51190407app
http://blog.csdn.net/lovesummerforever/article/details/36386207this
http://zhenkm0507.iteye.com/blog/546785url
http://www.cnblogs.com/wangyang108/p/5842275.htmlspa
http://dinguangx.iteye.com/blog/1845119.net
http://libinchinabj.iteye.com/blog/2178155debug
對於cas4.0在cas-server.xml中搜索logoutAction,將${cas.logout.followServiceRedirects:false}中的false改爲true,以下:<bean id="logoutAction" class="org.jasig.cas.web.flow.LogoutAction"p:servicesManager-ref="servicesManager"p:followServiceRedirects="${cas.logout.followServiceRedirects:true}"/>至於cas4.2,cas-server.xml中少了不少東西,把這三行放到最後試試