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=17019>. 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=17019 error on JAXP using xerces 2.3.0 ------- Additional Comments From [EMAIL PROTECTED] 2003-02-12 21:17 ------- i replaced Crimson.jar with xercesImpl.jar, still i am getting the same error. Error: ------- Buildfile: build.xml BUILD FAILED No JAXP compliant XML parser found. Please visit http://xml.apache.org for a sui table parser Total time: 0 seconds My build.bat consist: --------------------- if "%JAVA_HOME%" == c:/jdk1.3.1_07 if "%BASE_DIR%" == c:/Eai_java if "%WL_HOME%" == c:/weblogic set JAVA=%JAVA_HOME%\bin\java set ANT_CP=%BASE_DIR%\lib\ant.jar;%BASE_DIR%\lib\jakarta-ant-1.4-optional.jar;% BASE_DIR%\lib\xalan.jar;%BASE_DIR%\lib\xercesImpl.jar;%JAVA_HOME% \lib\tools.jar;%WL_HOME%/classes %JAVA% -classpath %ANT_CP% -Dant.home=lib org.apache.tools.ant.Main -buildfile build.xml %1 %2 %3 %4 %5 my build.xml consist: -------------------- <project default="all" basedir="."> <property name="build.compiler" value="classic"/> <property name="debug" value="on"/> <property name="optimize" value="on"/> <property name="deprecation" value="on"/> <property name="base.dir" value="${basedir}"/> <property name="build_base" value="${base.dir}/build"/> <property name="build" value="${build_base}/classes"/> <property name="dist_base" value="${basedir}/dist"/> <property name="dist" value="${dist_base}/lib"/> <property name="doc" value="${base.dir}/doc"/> <property name="lib" value="${base.dir}/lib"/> <property name="src" value="${base.dir}/src"/> <property name="config" value="${base.dir}/config"/> <property file="build.properties"/> <path id="classpath"> <pathelement path="${build}"/> <pathelement path="${wl_home}/classes"/> <fileset dir="${lib}"> <include name="**/*.jar"/> <include name="**/*.war"/> <include name="**/*.zip"/> </fileset> </path> <!-- =================================================================== --> <!-- Initialization target --> <!-- =================================================================== --> <target name="init"> <tstamp/> <property name="EAI.name" value="EAI"/> <echo message="-----------EAI Builder ------------"/> <filter token="verbose" value="true"/> </target> <!-- =================================================================== --> <!-- Help on usage --> <!-- =================================================================== --> <target name="usage"> <echo message=""/> <echo message=""/> <echo message="EAI Builder"/> <echo message="------------------------------------------------ -------------"/> </target> <!-- =================================================================== --> <!-- Prepares the directories --> <!-- =================================================================== --> <target name="prepare" depends="init"> <mkdir dir="${build_base}"/> <mkdir dir="${build}"/> <mkdir dir="${dist_base}"/> <mkdir dir="${dist}"/> <mkdir dir="${doc}"/> <mkdir dir="${lib}"/> <mkdir dir="${config}"/> <mkdir dir="${src}"/> </target> <!-- =================================================================== --> <!-- Compiles the source --> <!-- =================================================================== --> <target name="compile" depends="prepare"> <depend srcdir="${src}" destdir="${build}" cache="${build}" closure="yes"/> <javac srcdir="${src}" classpathref="classpath" destdir="${build}" debug="${debug}" optimize="${optimize}"/> </target> <!-- =================================================================== --> <!-- Build the shared components --> <!-- =================================================================== --> <target name="eaishared" depends="compile"> <ant dir="${base.dir}/proj/eaishared"/> </target> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
