Vincent Massol wrote:
>
> [java] [java] java.lang.NoClassDefFoundError: org/xml/sax/HandlerBase
>
> It doesn't look like a real Tomcat error. Does it have to do with some
> XML parser changes somewhere ? What should I modify in Cactus gump
> descriptor ?
Unless you preserve the value of build.sysclasspath on your nested Ant
calls, gump builds of cactus will be partially built using one set of
dependencies and partially with another. See below for a suggested fix.
I've already committed a change each to tomcat 3 and tomcat 4 this
morning which should enable the relevant cactus builds to get a step
further in the process once the change below is committed.
You should also be able to remove the ${java.class.path} pathelements
from the start and stop targets of build-tests-tomcat-40.xml.
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-cactus/sample-servlet/build.xml,v
retrieving revision 1.11
diff -u -r1.11 build.xml
--- build.xml 30 Jul 2002 20:17:19 -0000 1.11
+++ build.xml 3 Aug 2002 12:49:09 -0000
@@ -364,6 +364,7 @@
failonerror="yes">
<!-- Pass all required properties -->
+ <arg value="-Dbuild.sysclasspath=${build.sysclasspath}"/>
<arg value="-Dservlet.jar=${j2ee.jar}"/>
<arg
value="-Dcactus.framework.jar=${cactus.framework.elected.jar}"/>
<arg value="-Dcactus.ant.jar=${cactus.ant.jar}"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>