ssl,spring-security,ssl-certificate,cas,jasig
Indeed, the CAS server should send logout requests to all applications the user has accessed when you call /cas/logout, in addition to the deletion of its own cookies (CASTGC and CASPRIVACY). The property managing that is: https://github.com/Jasig/cas/blob/master/cas-server-webapp/src/main/webapp/WEB-INF/cas.properties#L75...
single-sign-on,web2py,cas,jasig
There were issues on web2py's CAS 2.0 implementation where the XML envelope was inspected but not the actual Attribute structure. I made some changes to a fork and submitted a pull request. https://github.com/yusufk/web2py...
Disclaimer: I'm the Chairman of CAS and founder of CAS in the cloud (https://www.casinthecloud.com). I'm the creator of the pac4j library as well. The CAS logout is handled by this controller: https://github.com/Jasig/cas/blob/3.5.2.1/cas-server-core/src/main/java/org/jasig/cas/web/LogoutController.java and logout requests are really sent by this code: https://github.com/Jasig/cas/blob/3.5.2.1/cas-server-core/src/main/java/org/jasig/cas/ticket/TicketGrantingTicketImpl.java#L142. Nothing relevant in your logs?...
Here is a current example project. https://github.com/leleuj/cas-overlay-demo You should be able to get to the cas management app with /cas-management once your app is built....
Okey, it's easier than i thought. Carefully read new docs: http://jasig.github.io/cas/4.0.x/installation/Maven-Overlay-Installation.html So main point that I have to put my files at exactly the same place as it in CAS. So for example jsp should be in WEB-INF/view/jsp/default/ui and CAS will use this JSP instead of use default JSP. Or...
.net,c#-4.0,single-sign-on,cas,jasig
I ended up having to download the source for the Jasig CAS client and implement a new ticket validator. The IP that we are using is ECAS, the European Commission's Authentication Service, and it did not support my client's permission level. For anyone interested, or anyone who happens to be...