On 4/4/06, Cyp her <[EMAIL PROTECTED]> wrote: > * Are there any convenient methods for accessing the Session like in > WebObjects where there is a session class in the application?
In servlets, there's an HttpSession object that you can pull out of the HttpServletRequest. Instead of being a subclassable object, it instead holds references to a Map (think NSDictionary) where you can store objects the entire session. How you get a reference to your HttpSession object depends on the framework. http://java.sun.com/products/servlet/2.3/javadoc/javax/servlet/http/HttpSession.html
