actually I didn't have CLASSPATH defined on my ubuntu server.
I removed all other apps, and added to CLASSPATH the absolute paths to WEB-INF//lib and WEB-INF/classes of the webapp, like this:
I restarted the server, echo $CLASSPATH gives the above value.
But the error about the missing package remains.
As a side note, did you notice the ## in the paths? We're using tomcat parallel deployment feature (http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Parallel_deployment) may it create problems?
I removed all other apps, and added to CLASSPATH the absolute paths to WEB-INF//lib and WEB-INF/classes of the webapp, like this:
Code:
export CLASSPATH=/usr/local/tomcat/apache-tomcat-7.0.40/webapps/Legend##0392/WEB-INF/lib/*:/usr/local/tomcat/apache-tomcat-7.0.40/webapps/Legend##0392/WEB-INF/classes/*
But the error about the missing package remains.
As a side note, did you notice the ## in the paths? We're using tomcat parallel deployment feature (http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Parallel_deployment) may it create problems?
Comment