Re: Implementing HttpSession

2007-10-04 Thread Mark Thomas
lightbulb432 wrote: > There are a couple of methods I'm having trouble understanding how to > implement. The first is isNew(). Looking through the StandardSession code, I > can't tell exactly when to set this to true and false - all I know is that > initially upon session creation on the server (e.

Re: Implementing HttpSession

2007-10-04 Thread Tim Funk
For a different session implementation than StandardSession : http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html It is a JDBC based version of storing an HttpSession. -Tim lightbulb432 wrote: Rather than using Tomcat's own HttpSession, I may be implementing HttpSession to wri

Implementing HttpSession

2007-10-03 Thread lightbulb432
Rather than using Tomcat's own HttpSession, I may be implementing HttpSession to write to shared storage or to the client. (Or if for no other reason, then to learn something.) Do you know of any HttpSession implementations that are publicly available, as the task of storing session sta