TC6 classpath problem...

2008-04-07 Thread Nathan Wilhelmi
Upgrading from TC5.5 to TC6 and having class path problems. We are starting it via JSVC, we used to start it up with the following class path: CLASSPATH=\ $JAVA_HOME/lib/tools.jar:\ $CATALINA_HOME/bin/commons-daemon.jar:\ $CATALINA_HOME/bin/bootstrap.jar However with TC6, it requires CLASSPATH

RE: TC6 classpath problem...

2008-04-07 Thread Caldarale, Charles R
> From: Nathan Wilhelmi [mailto:[EMAIL PROTECTED] > Subject: TC6 classpath problem... > > to get apps to run we have to list the entire contents > of $CATALINA_HOME/lib/ as part of the classpath value Did you know that setting CLASSPATH to anything when starting Tomcat is a

RE: TC6 classpath problem...

2008-04-07 Thread Nathan Wilhelmi
Thanks for the pointer, I changed it to: JSVC_CLASSPATH=\ $CATALINA_HOME/bin/commons-daemon.jar:\ $CATALINA_HOME/bin/bootstrap.jar:\ and passed $JSVC_CLASSPATH as the -cp command. It starts although I am getting some MBean errors, should this be picked up or do I need to extend the JSVC -cp bey

RE: TC6 classpath problem...

2008-04-07 Thread Caldarale, Charles R
> From: Nathan Wilhelmi [mailto:[EMAIL PROTECTED] > Subject: RE: TC6 classpath problem... > > JSVC_CLASSPATH=\ > $CATALINA_HOME/bin/commons-daemon.jar:\ > $CATALINA_HOME/bin/bootstrap.jar:\ Why do you have commons-daemon.jar on the -cp? None of the doc shows that. >

Re: RE: TC6 classpath problem...

2008-04-07 Thread Nathan Wilhelmi
I don't know how to get JSVC to start without it though, every example I can find of JSVC has the minimal classpath variables I listed. It won't start without it, likely as it bypasses the tomcat scripts you mentioned. What I am trying to figure out is why I have to list everything in /lib by ha

RE: RE: TC6 classpath problem...

2008-04-07 Thread Caldarale, Charles R
> From: Nathan Wilhelmi [mailto:[EMAIL PROTECTED] > Subject: Re: RE: TC6 classpath problem... > > I don't know how to get JSVC to start without it though, > every example I can find of JSVC has the minimal classpath > variables I listed. That's odd, because e