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 this:
for i in ${TOMCAT_HOME}/lib/* ; do
CLASSPATH=${CLASSPATH}:$i
done
Does anyone have a good idea how run.sh could be modified to account for
both possibilities?
Thanks,
Tim
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]