Hi guys,
I'll try as best as possible to explain what I'm doing in order to get best possible advice/solution. This is all done in java.
My client has a SWING based desktop application that will load using WebStart. I was assigned to create a Session Manager for user account information.
My friend suggested to rather use Http Session Management, so I've decided to try it out. I've written a servlet (let's call this SessionServlet) that does create, remove, and reassign sessions based on user profile. In tomcat 7, The sessions are not stored. I suspect that when the servlet is initialized, the session is blanked out. I only get, org.apache.catalina.ASYNC_SUPPORTED
in Session.
My question(s) is/are:
- How do I allow Tomcat 7 to do Session Management?
- How can I do Session Management in Spring 3? I have most services running on Spring and I think it'll be wise enough for me to do Session Management on Spring.
- What other means to do Session Management in java, is there a design pattern for Session Management? (just curious).
Thanks a million!