Hi, thank you for replay. I tried to set various options in strartup.bat but It didn't work. It worked only if I ran "java -jar bootstrap.jar start" command from commnad line in tomcat\bin\. The thing which I'm interested in is which options (variables) are used when I start Tomcat this way (java -jar boot...). Than I can try to set service (windows registry, good to know, thx) same way as it's set when I'm using bootstrap class to tomcat run. Thanks for answer. Jan
On Thu, May 14, 2009 at 10:31 AM, André Warnier <a...@ice-sa.com> wrote: > Jan Horkı wrote: > >> Hi, >> >> I have problem with running my app. When I run Tomcat 5.5 | 6.0 by java >> -jar >> bootstrap.jar start It works fine, but when I try run it by catalina.bat >> or >> install as servise I got some class found problems. >> >> Shortly... Some features of application is based on jaxb1 and I need there >> web servise which is based on jwsdp2 (jaxb2). I put some jars to app/lib, >> some to tomcat/lib and some to java/lib and it works with java -jar >> bootstrap.jar start, but not as service. >> >> Hi. > > When you run Tomcat as a service under Windows, you are really running the > program "TOMCAT_DIR/bin/tomcat5.exe". This is a "wrapper" program which > includes what is needed to run as a Windows Service (catch "start/stop > service" events etc..). This wrapper program, in turn, runs the java jvm, > and this java jvm runs Tomcat. > > When you start Tomcat via the "startup.bat" script, you are not using this > wrapper program. You run the java jvm directly, and it runs Tomcat. > > Ok so far ? > > When you run Tomcat from the startup.bat script, there are a number of > "environment values" which are set by the startup script, before starting > the java jvm. Example : JAVA_OPTS, CATALINA_HOME, etc.. > > When you run the Service wrapper "TOMCAT_DIR/bin/tomcat5.exe", these > parameters are not set via environment values. Instead they are in the > Windows Registry. > To modify these parameters, there exists another program, named > "TOMCAT_DIR/bin/tomcat5w.exe", which is a Windows GUI program that you can > run, and which allows you to set the startup parameters. > > Try it, and see if that already answers some of your questions. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org > For additional commands, e-mail: users-h...@tomcat.apache.org > >