RE: Tomcat on a server

2006-07-17 Thread Tim Lucia
> -Original Message- > From: David Smith [mailto:[EMAIL PROTECTED] > Sent: Monday, July 17, 2006 10:36 AM > To: Tomcat Users List > Subject: Re: Tomcat on a server > > Yes, but Tomcat also pools threads and keeps them around between > requests, recycling as n

Re: Tomcat on a server

2006-07-17 Thread David Smith
Yes, but Tomcat also pools threads and keeps them around between requests, recycling as necessary. The servlet's themselves should avoid class instance variables unless they are reset to some known state at the beggining or end of every request for this reason. --David Alan Meyer wrote:

Re: Tomcat on a server

2006-07-17 Thread Alan Meyer
> is it possible to have one tomcat running on a server and allow > multiple clients to execute their programs on the tomcat > running on the server without affecting other clients > execution.How can we configure tomcat for this purpose? If I understand everything correctly, when Tomcat receives

RE: Tomcat on a server

2006-07-16 Thread Pratap Parne
> exact same program/application? Or will each users > be changing the program > (such as in a class or academic environment)? > > -Original Message- > From: Pratap Parne [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 16, 2006 4:12 PM > To: Tomcat Users List > Subj

RE: Tomcat on a server

2006-07-16 Thread Richard Mixon
:12 PM To: Tomcat Users List Subject: Re: Tomcat on a server Tomcat would be running on a server.is it possible that several users can run their application simultaneously that it appears to them as if every one is executing their program on a seperate tomcat. --- Shinya Koizumi <[EMAIL PROTEC

Re: Tomcat on a server

2006-07-16 Thread Pratap Parne
Tomcat would be running on a server.is it possible that several users can run their application simultaneously that it appears to them as if every one is executing their program on a seperate tomcat. --- Shinya Koizumi <[EMAIL PROTECTED]> wrote: > >allow multiple clients to execute their program

Re: Tomcat on a server

2006-07-16 Thread Shinya Koizumi
allow multiple clients to execute their programs What kinda program you are talking about? ( some application runs on the command line? ) without affecting other clients execution Yes, you can do this using session. session is managed by web container so you don't have to configure Tomcat to