Re: Shutting down and restarting Tomcat

2002-11-08 Thread Andreas Probst
Hi Peter, try this batch file (startAndStop.bat): echo off echo. echo Calling startup echo. call startup.bat echo. echo Started echo. pause echo. echo Calling shutdown echo. call shutdown.bat echo. echo Shut down echo. pause startAndStop.bat The pause command is necessary,

Re: Shutting down and restarting Tomcat

2002-11-08 Thread Peter Lee
On 8 Nov 2002, at 2:43, yves lambert wrote: Peter Lee wrote: I need to shutdown and then restart tomcat repeatedly for my testing purposes. I am using a Windows batch file which will call shutdown.bat and startup.bat. But each time Tomcat did not restart. Is there any better way of

RE: Shutting down and restarting Tomcat

2002-11-08 Thread Turner, John
Subject: Re: Shutting down and restarting Tomcat On 8 Nov 2002, at 2:43, yves lambert wrote: Peter Lee wrote: I need to shutdown and then restart tomcat repeatedly for my testing purposes. I am using a Windows batch file which will call shutdown.bat and startup.bat. But each time

Re: Shutting down and restarting Tomcat

2002-11-08 Thread Tim Funk
: Peter Lee [mailto:tomcatuser;shaw.ca] Sent: Friday, November 08, 2002 4:16 AM To: Tomcat Users List Subject: Re: Shutting down and restarting Tomcat On 8 Nov 2002, at 2:43, yves lambert wrote: Peter Lee wrote: I need to shutdown and then restart tomcat repeatedly for my testing purposes. I

Re: Shutting down and restarting Tomcat

2002-11-08 Thread jattwood
Hi, What is the command for setting the delay in a Windows batch file? I downloaded something called UnxUtils.zip from the web (can't find where from at the moment). Amongst other Unix goodies this includes sleep.exe. It is a package of standalone binaries and you need install/use only those you

Re: Shutting down and restarting Tomcat

2002-11-08 Thread Srinadh Karumuri
What is the command for setting the delay in a Windows batch file? If there isn't one you can simply write sleep.java and call using: java sleep 2 :D Sri -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re: Shutting down and restarting Tomcat

2002-11-08 Thread Chris Parker
What is the command for setting the delay in a Windows batch file? I used delay but it didn't work. Thanks Assuming this isn't a 'day late and a dollar short', you might want to take a look at this web site. It has all sorts of tips for DOS batch files: http://www.calweb.com/~webspace/batch/

Re: Shutting down and restarting Tomcat

2002-11-08 Thread [EMAIL PROTECTED]
I am trying to create a custom jdbc realm. I create a class that extends org.apache.catalina.realm.JDBCRealm. When I start up my server, I get a class not found exception on my new realm class. How am I supposed to set my paths to see the realm class I created? when I add the class to my

Re: Shutting down and restarting Tomcat

2002-11-08 Thread Craig R. McClanahan
On Fri, 8 Nov 2002, [EMAIL PROTECTED] wrote: Date: Fri, 8 Nov 2002 11:47:32 -0500 From: [EMAIL PROTECTED] [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Shutting down and restarting Tomcat I

Shutting down and restarting Tomcat

2002-11-07 Thread Peter Lee
I need to shutdown and then restart tomcat repeatedly for my testing purposes. I am using a Windows batch file which will call shutdown.bat and startup.bat. But each time Tomcat did not restart. Is there any better way of doing this? Thanks -- To unsubscribe, e-mail:

RE: Shutting down and restarting Tomcat

2002-11-07 Thread Turner, John
You have to do it slowly...it is not instant. 3-10 seconds between calls to either of the scripts should be sufficient. John -Original Message- From: Peter Lee [mailto:tomcatuser;shaw.ca] Sent: Thursday, November 07, 2002 2:05 PM To: [EMAIL PROTECTED] Subject: Shutting down

RE: Shutting down and restarting Tomcat

2002-11-07 Thread Mike Jackson
jackson [EMAIL PROTECTED] -Original Message- From: Peter Lee [mailto:tomcatuser;shaw.ca] Sent: Thursday, November 07, 2002 11:05 AM To: [EMAIL PROTECTED] Subject: Shutting down and restarting Tomcat I need to shutdown and then restart tomcat repeatedly for my testing purposes

Re: Shutting down and restarting Tomcat

2002-11-07 Thread billfly3
Look at the Manager application in the Tomcat documentation. It will allow you to deploy, redeploy, and restart a single application, rather than the entire Tomcat instance. These operations take a matter of seconds. I need to shutdown and then restart tomcat repeatedly for my testing

Re: Shutting down and restarting Tomcat

2002-11-07 Thread yves lambert
Peter Lee wrote: I need to shutdown and then restart tomcat repeatedly for my testing purposes. I am using a Windows batch file which will call shutdown.bat and startup.bat. But each time Tomcat did not restart. Is there any better way of doing this? Thanks -- To unsubscribe, e-mail: