Re: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection

2010-06-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bulkan, On 6/21/2010 12:46 AM, Bulkan wrote: I am not running tomcat as a service. I directly start tomcat.exe Tomcat.exe does not run Tomcat. So, how are you really starting Tomcat? - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10

RE: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection

2010-06-21 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection Tomcat.exe does not run Tomcat. Well actually, tomcat6.exe does - it's just another JVM launcher. You can use that in lieu of the scripts. Running the .exe

tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection

2010-06-20 Thread Bulkan
Hi All, Before we upgraded from Tomcat 6.0.18 to 6.0.26 I was able to redirect stdout/stderr of tomcat.exe using the following Python code; from subprocess import Popen logfile = open('tomcat.log', 'w') p = Popen(r'C:\Program Files\Apache Software Foundation\Tomcat 6.0\bin\tomcat6.exe',

Re: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection

2010-06-20 Thread Mark Eggers
Logging that allows you to set a bunch of parameters. /mde/ --- On Sun, 6/20/10, Bulkan bul...@gmail.com wrote: From: Bulkan bul...@gmail.com Subject: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection To: users@tomcat.apache.org Date: Sunday, June 20, 2010, 6:06 PM Hi All, Before we

Re: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection

2010-06-20 Thread Bulkan
...@gmail.com Subject: tomcat.exe 6.0.18 to 6.0.26 stdout/stderr redirection To: users@tomcat.apache.org Date: Sunday, June 20, 2010, 6:06 PM Hi All, Before we upgraded from Tomcat 6.0.18 to 6.0.26 I was able to redirect stdout/stderr of tomcat.exe using the following Python code