while implementing jasig-CAS I've faced the next problem:
I want to implement the logout. For now it works fine, but I want CAS server to redirect the user after logging out to the server where the request came from(for instance, http://localhost:8080/myApp).
I've tried to add "service" in security context, but nothing happened
here is a piece 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.
logout-success-urlparameter? - Aleksandr Mhttp://localhost:8080/myAppaslogout-success-url? - Aleksandr M