>Also, I had to update the tomcat startup script to include the
>classpath of the webapps. I thought this was done automatically.. This
>is the code I added to tomcat.sh to set the classpaths, maybe it will
>be useful to someone:
>
># Set classpath for webapps
># add this after the section:
># 'Backdoor classpath setting for development purposes'
># and before:
># export CLASSPATH
>for app in ${TOMCAT_HOME}/webapps/* ; do
> if [ -d ${app}/WEB-INF/lib/ ]; then
> for i in ${app}/WEB-INF/lib/* ; do
> if [ "$CLASSPATH" != "" ]; then
> CLASSPATH=${CLASSPATH}:$i
> else
> CLASSPATH=$i
> fi
> done
> fi
>done
Did you install this using the SC JDK, or was it a manual install of the
component applications?
~Brian
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>