让CAS支持HTTP协议认证
CAS默认使用HTTPS认证,在登录时使用HTTP方式也可以,但退出时必须使用HTTPS。如果要使用HTTP方式认证,需要修改2个配置文件
1.修改deployerConfigContext.xml中的authenticationHandlers,新增属性p:requireSecure="false"
<bean class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler" p:httpClient-ref="httpClient" p:requireSecure="false"/>
2.修改ticketGrantingTicketCookieGenerator.xml,把p:cookieSecure="true",改为p:cookieSecure="false"
<bean id="ticketGrantingTicketCookieGenerator" class="org.jasig.cas.web.support.CookieRetrievingCookieGenerator" p:cookieSecure="false" p:cookieMaxAge="-1" p:cookieName="CASTGC" p:cookiePath="/cas" />
相关推荐
manongxiaomei 2020-07-05
zhangxiaocc 2020-04-29
zmzmmf 2020-02-09
xiaoemo0 2019-12-17
middleware0 2019-12-04
清溪算法 2019-11-21
chengqiang00 2019-10-30
sdwang 2019-06-10
Mical0 2014-05-29
84086320 2012-04-18
beiya 2016-10-24
82463165 2014-06-28
laiwanwanyihao 2013-10-28
秦怀卓 2012-05-28
凯哥Java 2012-03-15