We got our own central session management. Generally user can authenticate over it with an username and password, and as a result he gets an session_id. All other operations are done with that session_id. Let's say that the session management is accessed by a XML RPC.
I have two cases to implement:
- Central web application made in Spring, which has login form
- External web applications also made in Spring, which are relying on passed session_id only.
Few more notices regarding system:
- session_id is stored in a cookie (after successful login, I have to add cookie to a response)
- every page request has to check session_id validity in session management system
I'm quite new to Spring, so I'm struggling to understand where and how to implement my custom logic.
My questions are:
What parts of a system I have to implement to have my own login logic (got to have access to a response object too - to set cookie)? I tryed something with extending UsernamePasswordAuthenticationFilter and implementing my own AuthenticationManager, but I'm not sure that I'm going the right way.
Is there point where/how can I implement my "every request session check" in Spring Security manner?