I need a mechanism to read session state from a Java class, without having to pass any arguments (including HttpRequest) to the class. The reason is that the class is 1-3 calls away from the servlet and i dont want to pollute the method argument list with an extra arg for every call. I basically have the same prob of these guys: http://forums.sun.com/thread.jspa?threadID=5124189
For which apparently Java does not have a solution currently..
Cheers