Hi, There is a direct correlation (I'd even say a causal relationship, but let's not add statistics to this list's topics ;)) between the amount of things you have in jre/lib/ext and the amount of headaches you will experience. Remove everything you can from there.
>Using CATALINA_BASE: C:\jakarta-tomcat-5.0.24 >Using CATALINA_HOME: C:\jakarta-tomcat-5.0.24 >Using CATALINA_TMPDIR: C:\jakarta-tomcat-5.0.24\temp >Using JAVA_HOME: c:\j2sdk1.4.2_03 >java.lang.reflect.InvocationTargetException > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at >sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. >java:39) > at >sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces >sorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:324) > at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:247) > at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:421) >Caused by: java.lang.NoClassDefFoundError: >org/apache/commons/collections/ArrayS That's fairly predictable: the version of commons-collections found at runtime is different from that expected (and found) and compile-time. Look for multiple commons-collections jars on the classpath, remembering that tomcat ships its own as well (in common/lib). Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
