RE: Using older Xerces JAR

2003-04-03 Thread Shapira, Yoav
>Sent: Thursday, April 03, 2003 1:04 PM >To: Tomcat Users List >Subject: Re: Using older Xerces JAR > >I see that Tomcat has it's own Xerces JAR files (xercesImpl.jar and >xmlParserAPIs.jar) in the $CATALINA_HOME/common/endorsed directory. >It does not seem like a good idea

Re: Using older Xerces JAR

2003-04-03 Thread bahbahbooie
I see that Tomcat has it's own Xerces JAR files (xercesImpl.jar and xmlParserAPIs.jar) in the $CATALINA_HOME/common/endorsed directory. It does not seem like a good idea to *replace* those files with my own. The documentation at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.h

Re: Using older Xerces JAR

2003-04-03 Thread xyber
tomcat version 4.1 has his own xerces.jar (and xercesImpl), which is xerces 2. your app is maybe use a xerces1-only function. replace tomcat's xerces.jar with own old xyb [EMAIL PROTECTED] wrote: I have an XML parsing application that was working fine using Tomcat 3.2.4 in-process with Apache

Using older Xerces JAR

2003-04-03 Thread bahbahbooie
I have an XML parsing application that was working fine using Tomcat 3.2.4 in-process with Apache. The app. consists of a servlet that receives XML data, parses it and then generates an XML response. I had Xerces version 1.4.4 specified in the in-process classpath in workers.properties. I have