Hello All,

    A simple one? I have my session defined in a servlet thus:

 

 

HttpSession session = req.getSession();

session.setAttribute("userSession", h); // (h = HashMap)

 

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 

 

close() {

 

      // kill my session here

 

} 

or failing that, how do I define a length of time for the session life?

 

Thanks

 

Paul.

Reply via email to