You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Jon Stevens <jo...@latchkey.com> on 2001/01/06 00:16:11 UTC

classloader 4.x (again)

Ok Craig,

I'm testing out last nights snapshot and it appears as though the
classreloading is working. Great!

#1. It is figuring out the class has changed.
#2. It is then calling the destroy method of Turbine
#3. It is then acting like a new first request and calling the init() method
on Turbine.

However, it also appears as though I'm still loosing my session information
(which is something that I dearly need to keep) as I'm getting a new session
id on the next request even though I sent one that was previously valid.

Can you please confirm or deny that this last part is implemented properly?

My server.xml looks like this:

   <Context path="/scarab" docBase="scarab" reloadable="true">
     <Loader checkInterval="3"
      className="org.apache.catalina.loader.StandardLoader"/>
   </Context>

My request is:

http://localhost:8080/scarab/servlet/scarab/template/Register.vm

I'm clicking the "Register" button to do my testing.

thanks,

-jon