CAS 3 is designed to be stateful,as it use spring webflow and store the tgt in memory(or database);
Is it possible to make CAS stateless ?
can I achive that by removing the webflow and storing tgt in cookie ?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Right, the cas-server is stateful by requiring a session for the login-process (default session-timeout: 5 minutes) and by having an application-wide ticket-registry, which stores all valid tickets (ticket-granting tickets and service-tickets).
Since the authentication-logic is built (and tested) on top of spring webflow I would not recommend to exchange this part for an own implementation.
Why do you want to make the cas-server stateless?