Return-Path: Delivered-To: apmail-jakarta-tomcat-user-archive@jakarta.apache.org Received: (qmail 42746 invoked by uid 500); 29 May 2001 21:27:35 -0000 Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: tomcat-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 42643 invoked from network); 29 May 2001 21:27:26 -0000 Received: from sparrow.uchicago.edu (HELO sparrow.secns.uchicago.edu) (128.135.168.100) by h31.sny.collab.net with SMTP; 29 May 2001 21:27:26 -0000 Received: from skate ([128.135.99.2]) by sparrow.secns.uchicago.edu over TLS secured channel with Microsoft SMTPSVC(5.0.2195.2966); Tue, 29 May 2001 16:27:02 -0500 Message-ID: <00a501c0e886$19ccae80$02638780@secns.uchicago.edu> From: "Jonathan Eric Miller" To: "Tomcat User" Subject: Re: Starting Tomcat without new DOS Window Date: Tue, 29 May 2001 16:27:01 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-OriginalArrivalTime: 29 May 2001 21:27:02.0249 (UTC) FILETIME=[19CCD590:01C0E886] X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N I don't know about the service related part of your question, but, I found out how to start it without opening a new Command Prompt window. In startup.bat, you should see a line like the following. call "%TOMCAT_HOME%\bin\tomcat" start %1 %2 %3 %4 %5 %6 %7 %8 %9 If you change the text "start" to "run" as in the following, it will run and not open another window. call "%TOMCAT_HOME%\bin\tomcat" run %1 %2 %3 %4 %5 %6 %7 %8 %9 I found this to be helpful when trying to get SSL to work. I didn't have things configured correctly and couldn't see what the error message was because the window was shutting too fast. BTW, Tomcat developers, it would be nice if errors were logged to the log file in this case and not just to the screen. Jon