Hello All,
A simple one? I have my session defined in a servlet thus:
HttpSession session = req.getSession();
session.setAttribute("userSession", h);
how or where do define session parameters such as expiry? I would
ideally like my session to die when I call a specified method e.g
public void close() {
// kill my session here
}
or failing that, how do I define a length of time for the session life?
Thanks
Paul.
