sso 登出_sso单点退出的问题,只自己应用退出了,

版本

cas-server-3.5.0

cas-client-3.2.1

研究cas的相关搜索关键字

cas ticket

cas login-webflow.xml

在退出地址列表中url后带上/

http://192.168.2.3:8080/Plat/

http://192.168.2.3:8080/base/

http://192.168.2.5:8080/Plat/

http://192.168.2.5:8080/base/

其他说明:

org.jasig.cas.web.LogoutController.java

protected ModelAndView handleRequestInternal(

final HttpServletRequest request, final HttpServletResponse response)

throws Exception {

final String ticketGrantingTicketId = this.ticketGrantingTicketCookieGenerator.retrieveCookieValue(request);

final String service = request.getParameter("service");

if (ticketGrantingTicketId != null) {

this.centralAuthenticationService

.destroyTicketGrantingTicket(ticketGrantingTicketId);

this.ticketGrantingTicketCookieGenerator.removeCookie(response);

this.warnCookieGenerator.removeCookie(response);

}

if (this.followServiceRedirects && service != null) {

return new ModelAndView(new RedirectView(service));

}

return new ModelAndView(this.logoutView);

}

sso发退出请求

org.jasig.cas.util.HttpClient.java

private Boolean call(String server) {

HttpURLConnection connection = null;

BufferedReader in = null;

try {

if (log.isDebugEnabled()) {

log.debug("Attempting to access " + server);

}

final URL logoutUrl = new URL(server);

final String output = "logoutRequest=" + URLEncoder.encode(message, "UTF-8");

connection = (HttpURLConnection) logoutUrl.openConnection();

connection.setDoInput(true);

connection.setDoOutput(true);

connection.setRequestMethod("POST");

connection.setReadTimeout(readTimeout);

connection.setConnectTimeout(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();

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 SocketTimeoutException e) {

log.warn("Socket Timeout Detected while attempting to send message to [" + url + "].");

return false;

} catch (final Exception e) {

log.warn("Error Sending message to url endpoint [" + url + "]. Error is [" + e.getMessage() + "]");

return false;

} finally {

if (in != null) {

try {

in.close();

} catch (final IOException e) {

// can't do anything

}

}

if (connection != null) {

connection.disconnect();

}

}

}

客户端,接收退出请求

org.jasig.cas.client.session.SingleSignOutFilter

public void doFilter(final ServletRequest servletRequest, final ServletResponse servletResponse, final FilterChain filterChain) throws IOException, ServletException {

final HttpServletRequest request = (HttpServletRequest) servletRequest;

if (handler.isTokenRequest(request)) {

handler.recordSession(request);

} else if (handler.isLogoutRequest(request)) {

handler.destroySession(request);

// Do not continue up filter chain

return;

} else {

log.trace("Ignoring URI " + request.getRequestURI());

}

filterChain.doFilter(servletRequest, servletResponse);

}

参考:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值