is there only static objects in Tomcat?

2002-06-18 Thread Ray Letts
I read a previous thread where someone stated that: you know that Tomcat creates all objects as static? So then, if user A contacts a servlet via Tomcat that creates a person object and stuffs some personal info in it and user B later contacts the same servlet via Tomcat that creates a

Re: WAR and server.xml

2002-05-22 Thread Ray Letts
If you read the manual, then you will note that WAR files placed within the webapps directory are automatically expanded and do not need an entry in server.xml. READ THE MANUAL. please thanks Ray -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

reloadable=true just not working. Any ideas gentlefolk?

2002-05-21 Thread Ray Letts
Below is a snippet from my conf/server.xml file. From all the docs I've read, and the examples, this should work. However the tomcat class loader does not recognize newly compiled class files and still uses the cached versions. Can anyone spot a problem with the xml below? It parses

Re: ***Please reply as no one on this list has offered ANY help***

2002-05-21 Thread Ray Letts
A quick question without going over all that code: The problem is, that when another user sends a message. ALL instances of the variables seem to swap over to the most recent. static variables? these get instantiated once per class not per object and thus would act as you have said

reloadable=true not working--- problems with reloading servlets

2002-05-17 Thread Ray Letts
searching the bug reports but that is one crazy form for bugs they have on the jakarta site. Anyone have success with this? or not? Is it a bug? many thanks! Ray Letts -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: reloadable=true not working--- problems with reloading servl ets

2002-05-17 Thread Ray Letts
Yes the manager app will restart and the Tomcat will reload but I want Tomcat to detect newly compiled class files and reload without restarting, whether via the command line or via the manager web app. This will avoid developers asking each other if they can 'restart' Tomcat while working