RE: ServletSession's and Servlet Reloading

2000-08-08 Thread Scott Lawrence
Title: RE: ServletSession's and Servlet Reloading Also, I want to emphasize that the solution mentioned is not desirable.  Maintaining session information even after reloads promotes rapid development.  It allows one to build up a session and then work on a single servlet, compiling

RE: ServletSession's and Servlet Reloading

2000-08-08 Thread Scott Lawrence
Title: RE: ServletSession's and Servlet Reloading Actually, it is possible.  Session's are not lost in Websphere when you recompile any of the classes... servlet or otherwise.  I'm not reloading the session, just a single servlet (which of course can access the session).  No,

RE: ServletSession's and Servlet Reloading

2000-08-08 Thread Hani Suleiman
Title: RE: ServletSession's and Servlet Reloading This behaviour actually makes a lot of sense when you consider how classloaders work in java. It is impossible to throw away any given class, in order to do ANY reloading of anything at all, you need to throw away the classloader, and m

RE: ServletSession's and Servlet Reloading

2000-08-07 Thread Scott Lawrence
I do have development=true but that's only so that orion generates the source for the jsps as far as I know. I ran a few tests to see what was happening and I got mixed results. The most disturbing was the code below. It simply keeps track of an attribute in the session and how many times it ex

RE: ServletSession's and Servlet Reloading

2000-08-07 Thread Kevin Duffey
I am not sure, but in WEB-INF/orion-web.xml, did you make sure the setting for development is set to true? Also, I think ALL session objects must implement serializable for this to work. I am having problems too. I don't know why, but my objects implement serializable and whenever I recompile the