when implementing jasig-CAS, I ran into the following problem: I want to implement logout. At the moment it works fine, but I want the CAS server to redirect the user after reaching the server where the request came from (for example, http://localhost:8080/myApp ). I tried to add a βserviceβ in the security context, but nothing happened here is part of my spring security context:
<security:logout logout-url="/logout" logout-success-url="https://localhost:9543/cas-server-webapp-3.4.10/logout?service=http://localhost:8080/myApp" invalidate-session="true" />
All configs and procedures are taken from this manual.
source share