Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-07 Thread Luan O'Carroll
ot;'jBoss'" [EMAIL PROTECTED] Sent: Wednesday, September 06, 2000 6:46 PM Subject: RE: [jBoss-User] Tomcat Binary followup comment/question That could be the source of my pain and suffering with ZOLA. I'd been trying to get Tomcat and JBoss to play nice with each other on WIndows 2000 and haven'

[jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Tim White
One thing that is different between running jBoss with Tomcat Binaries as opposed to source that I discovered: jboss/bin/run.sh adds $TOMCAT_HOME/lib to the classpath - which doesn't work with the binaries because everything in the binary distribution is in .jar files. Instead, you have to use

Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Aaron Mulder
Just look at the current tomcat.sh and tomcat.bat files distributed with Tomcat. There was just a discussion on the Tomcat list of getting them to work on all Windows platforms, and they already worked fine on UNIX. Aaron On Wed, 6 Sep 2000, Tim White wrote: One thing that is

Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Vincent Sheffer
The latest version of run.sh should have the following: if [ "${TOMCAT_HOME}X" != "X" ] ; then if [ -x $TOMCAT_HOME ] ; then echo "Adding jar files in ${TOMCAT_HOME}/lib to CLASSPATH" CLASSPATH="$CLASSPATH:${TOMCAT_HOME}/lib"

RE: [jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Greg Pierce
! -Original Message- From: Aaron Mulder [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 12:36 PM To: jBoss Subject: Re: [jBoss-User] Tomcat Binary followup comment/question Just look at the current tomcat.sh and tomcat.bat files distributed with Tomcat

Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Sean McFadden
If you look at the Tomcat startup script, it has two different places it uses to build to the environment classpath. Jars (only) are found in {TOMCAT_HOME}/lib and are appended to the classpath individually using the exact script fragment Tim suggested: for i in ${TOMCAT_HOME}/lib/* ; do

Re: [jBoss-User] Tomcat Binary followup comment/question

2000-09-06 Thread Tim White
Vincent Sheffer wrote: The latest version of run.sh should have the following: if [ "${TOMCAT_HOME}X" != "X" ] ; then Which should (and does) work. Which version of JBoss are you using? If you are using a version of JBoss that you don't want to upgrade yet then just copy the above