Re: JVM config for tomcat5.5

2008-09-23 Thread jaki
Hi all, One more thing I wanted clarification on..Is it necessary that catalina.home system property is always set for a tomcat install? Cause trying to retrieve it from within a java class gives me null. But I can also find it being referenced in many of the config files, so any help on where

RE: JVM config for tomcat5.5

2008-09-23 Thread Caldarale, Charles R
From: jaki [mailto:[EMAIL PROTECTED] Subject: Re: JVM config for tomcat5.5 Is it necessary that catalina.home system property is always set for a tomcat install? It's not necessary to have it set during Tomcat installation. It is necessary during Tomcat execution, but this is normally

Re: JVM config for tomcat5.5

2008-09-21 Thread Johnny Kewl
- Original Message - From: Jon Camilleri [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: 'Tomcat Users List' users@tomcat.apache.org Sent: Sunday, September 21, 2008 7:51 AM Subject: RE: JVM config for tomcat5.5 Tomcat requires Java (at least SDK; but JDK won't harm) to be installed

RE: JVM config for tomcat5.5

2008-09-21 Thread Martin Gainty
is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] CC: users@tomcat.apache.org Subject: RE: JVM config

Re: JVM config for tomcat5.5

2008-09-21 Thread Markus Schönhaber
Martin Gainty: you'll definitely need the JDK in $JAVA_HOME and $JDK_HOME/bin to compile the JSPs.. No, a JRE is enough. Regards mks - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: JVM config for tomcat5.5

2008-09-21 Thread André Warnier
Markus Schönhaber wrote: Martin Gainty: [...] I think the main issue (which has also been touched in several other threads recently) is some level of confusion with the Tomcat Windows Installer, and what one finds oneself with in the Tomcat_install_dir/bin directory in that case. Instead

Re: JVM config for tomcat5.5

2008-09-20 Thread Mark Thomas
jaki wrote: Hi, I wanted to know where java_home is set for Tomcat when it's installed as a service since I can't find any .bat/.sh files in my tomcat folder. Thanks http://tomcat.apache.org/tomcat-6.0-doc/setup.html - To

Re: JVM config for tomcat5.5

2008-09-20 Thread jaki
Thanks for pointing that out. I was trying to retrieve java.home used by tomcat using a java program. I could go with sys.getProperty(java.home), but the value returned doesn't always have to match with java.home local to tomcat. So it seems peeking into the registry is the only way forward for

RE: JVM config for tomcat5.5

2008-09-20 Thread Jon Camilleri
Tomcat requires Java (at least SDK; but JDK won't harm) to be installed. On my machine I usually set: JAVA_HOME to the installation path for jdk/sdk e.g. /usr/java/jdk1.6.0_07 CATALINA_HOME to the installation path for /usr/apache-tomcat-6.0.16. Hope this helps. -Original Message-