码迷,mamicode.com
首页 > 其他好文 > 详细

CAS去掉HTTPS认证

时间:2014-08-01 15:27:21      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   strong   io   文件   

如何去掉HTTPS认证? 

  说明:默认情况下HTTP也是可以访问CAS SERVER的,但认证,登陆,退出等操作均没有任何的效果。所以必须作出下面的修改 

1、进入WEB-INF\spring-configuration目录 

  打开warnCookieGenerator.xml文件 修改p:cookieSecure的值为false 

2、打开ticketGrantingTicketCookieGenerator.xml文件 
  同样修改p:cookieSecure的值为false 

3、打开WEB-INF\deployerConfigContext.xml文件 
  查找org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler 
  把这代码块修改为如下: 

<bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
                    p:httpClient-ref="httpClient" p:requireSecure="false" />

 p:requireSecure="false"为新添加的

4、客户端filter  
  所有https://localhost:8443/cas   更改为 http://localhost:8080/cas

CAS去掉HTTPS认证,布布扣,bubuko.com

CAS去掉HTTPS认证

标签:style   blog   http   color   os   strong   io   文件   

原文地址:http://www.cnblogs.com/cxyj/p/3884746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!