DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6640>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6640

The classpath is not evalueted





------- Additional Comments From [EMAIL PROTECTED]  2002-03-08 16:53 -------
I don't know if this is the cause of your problem, but in the HEAD branch, I put 
a fix in for a very subtle problem: jar files with missing entries. Basically, 
the problem that I found was that Tomcat 4.0 would have trouble reading entries 
from jar files with missing directory entries. For example, if you have x.jar 
with a mypackage/MyClass.class file in it, Tomcat 4.0 expects to see the 
following entries if you do a "jar tf x.jar":

  mypackage/
  mypackage/MyClass.class

However, if you create or add entries into a jar file using
"jar uf mypackage/MyClass.class", the "mypackage/" entry does not get created and 
a "jar tf x.jar" like below will result:

  mypackage/MyClass.class

In this case, where the "mypackage/" directory is missing, Tomcat will not find 
any of the subdirectories and files with "mypackage/".

To test if this is the cause of your problem, run "jar tf" on each of your jar 
files that are in WEB-INF/lib and see if there are any missing directory entries. 
If so, you can insert them using "jar uf" as a workaround.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to