Replacing XML parser

2005-03-01 Thread Narayan, Satya
Hi all, I am using tomcat 5 for my web applications. I wanted my webapplications to use my own xml parser so I looked into the docs of tomcat and found that in jdk 1.4 supports "Endorsed Standards Mechanism" wherein I could replace my own XML parser instead of the default one

RE: SUN or APACHE, xml parser -- How do I know which is used ?

2004-08-03 Thread Shapira, Yoav
Hola, >But my xml-file generator app only seems to work when i add xerces.jar also >to this TC/commons/lib/endorsed path aswell. Any gueses why? Do you >recommend to distribute this needed xerces.jar package inside my webapp >classpath (web-inf..) instead? I recommend you write your xml-file gen

AW: SUN or APACHE, xml parser -- How do I know which is used ?

2004-08-03 Thread Ben Bookey
Users List; [EMAIL PROTECTED] Betreff: RE: SUN or APACHE, xml parser -- How do I know which is used ? Hi, Tomcat loads the pasrser from the common/endorsed directory per the Endorsed Classloader Mechanism specified by the JDK. Your argument is a bit flawed in that different Tomcat 4.1 releases

RE: SUN or APACHE, xml parser -- How do I know which is used ?

2004-08-03 Thread Shapira, Yoav
Millennium Research Informatics >-Original Message- >From: Ben Bookey [mailto:[EMAIL PROTECTED] >Sent: Tuesday, August 03, 2004 11:28 AM >To: Tomcat User List >Subject: SUN or APACHE, xml parser -- How do I know which is used ? > > >Dear List, > >xmlParserAPIs

SUN or APACHE, xml parser -- How do I know which is used ?

2004-08-03 Thread Ben Bookey
Dear List, xmlParserAPIs.jar and xercesImpl.jar (version 2) libs are supplied in the %CATALINA_HOME%/common/endorsed path. This path allows Tomcat to load a parser (or any other none jcp library) and override the default jar bundled with the JDK 1.4 release. a)The SUN JDK 1.4 release contains a

RE: Tomcat 5, Velocity and XML Parser issues

2004-04-06 Thread Shapira, Yoav
Hi, Read http://java.sun.com/j2se/1.4.2/docs/guide/standards/. Yoav Shapira Millennium Research Informatics >-Original Message- >From: Tom Bednarz [mailto:[EMAIL PROTECTED] >Sent: Tuesday, April 06, 2004 3:49 AM >To: Tomcat Users List >Subject: Tomcat 5, Velocity and XM

Tomcat 5, Velocity and XML Parser issues

2004-04-06 Thread Tom Bednarz
Hi, I just experienced a problem with Velocity and Tomcat 5.0.19. I use Velocity 1.3, Velocity Tools 1.0, Struts 1.1 and Tomcat 5.0.19. When starting my Web-App I got the following error: 2004-04-05 16:18:02 StandardContext[/Echnaton] Velocity [info] Velocity successfully started. 2004-04-05

Re: Loading Different XML Parser

2003-06-06 Thread Bill Barker
I haven't tried it myself, but other people have reported that my moving the xerces jars server/lib and putting their xml-parser in shared/lib works. "Brendle, Douglas A." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi all, I'm using the JDOM api f

RE: Loading Different XML Parser

2003-06-06 Thread Dmitry Sklyut
. [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 9:27 AM To: [EMAIL PROTECTED] Subject: Loading Different XML Parser Hi all, I'm using the JDOM api for xml parsing. Trouble is, Tomcat still tries Xerces no matter where I install the jdom.jar file. I've put it in /shared, /common and /

Loading Different XML Parser

2003-06-06 Thread Brendle, Douglas A.
Hi all, I'm using the JDOM api for xml parsing. Trouble is, Tomcat still tries Xerces no matter where I install the jdom.jar file. I've put it in /shared, /common and /webapp but no luck. Any ideas?

RE: Tomcat 4.1.18 standard version & XML parser

2003-02-24 Thread Hong Li
. This has impacts on applications that wish to use their own XML parser. In previous versions of Tomcat 4, you could simply replace the XML parser in the $CATALINA_HOME/common/lib directory to change the parser used by all web applications. However, this technique will not be effective wh

Re: Tomcat 4.1.18 standard version & XML parser

2003-02-24 Thread Jacob Kjome
Not sure what you mean by "I am not start tomcat using the -D endors setting so the parser in COMMON/ENDORSED shouldn't be used by tomcat", because the parser in common/endorsed will get used if it exists. This is by default. You would have to modify the default for this not to be the case. Se

Tomcat 4.1.18 standard version & XML parser

2003-02-24 Thread Hong Li
All, this might be a old question but I'd searched online and can't find any tomcat 4.1.x related. so hope someone could help. I am using a vendor's jar file which need using a version of Xerces parser(sorry asking them now which version) so I guess can't use default tomcat one. so I place the x

RE: I can't use SAXON XML parser in my WEB app, please help

2003-01-29 Thread Māris Orbidāns
nuary 29, 2003 6:22 PM > To: 'Tomcat Users List' > Subject: RE: I can't use SAXON XML parser in my WEB app, please help > > > Mike Kay, the creator of Saxon, says: > > " This problem is caused by the fact that you have made AElfred the > default XM

RE: I can't use SAXON XML parser in my WEB app, please help

2003-01-29 Thread Mitchell, Edmund
Mike Kay, the creator of Saxon, says: " This problem is caused by the fact that you have made AElfred the default XML parser. Tomcat needs a validating parser for its own use, and AElfred isn't a validating parser. You can usually solve the problem by changing the order of thi

Re: I can't use SAXON XML parser in my WEB app, please help

2003-01-29 Thread Jacob Kjome
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6248 http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6476 http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6374 Yes, I know it doesn't happen with b2. There were other more insidious problems with using a XML parser in a webapp repository

I can't use SAXON XML parser in my WEB app, please help

2003-01-29 Thread Māris Orbidāns
hello all I want to use SAXON XML parser in my WEB app. I put saxon.jar and saxon-jdom.jar in web-inf/lib of my web app. Now Tomcat doesnt work at all, it throws at startup: [ERROR] Digester - -Digester.getParser: javax.xml.parsers.ParserConfigurationException: AElfred parser is non

Re: tld locations??? must be directly in WEB-INF - relates to Tomcat xml parser bug

2002-12-06 Thread Bill Barker
MAIL PROTECTED]">news:[EMAIL PROTECTED]... > Attached is the xdoclet web.xml file that produces the below error. The > below references indicate that there may be a bug in the tomcat xml > parser that is exposed by the generated web.xml. > > The struts tld files are copied di

RE: tld locations??? must be directly in WEB-INF - relates to Tomcat xml parser bug

2002-12-06 Thread Aleksandr Shneyderman
Message- > From: Hanasaki JiJi [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 06, 2002 11:50 AM > To: Tomcat Users List > Subject: Re: tld locations??? must be directly in WEB-INF - relates to > Tomcat xml parser bug > > > Attached is the xdoclet web.xml file that produc

Re: Re[4]: XML parser

2002-11-20 Thread Saurabh Arora
bug.cgi?id=7175 Here's the applicable comment: --- Additional Comments From Patrick Luby 2002-03-16 23:24 --- I agree with Remy that you should stop trying to override the default XML parser. While you *may* be able to override it when using JDK 1.3, you will absolutely not be able

RE: XML parser

2002-11-20 Thread Paul_Wallace
ssage- From: Tref Gare [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 09:24 To: Tomcat Users List Subject: RE: XML parser No need (and some would say 'bad idea') to place the jar explicitly in the classpath. Tomcat adds any dependent files to the classpath dynamically when it starts

RE: XML parser

2002-11-20 Thread Paul_Wallace
Tref Gare [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 09:24 To: Tomcat Users List Subject: RE: XML parser No need (and some would say 'bad idea') to place the jar explicitly in the classpath. Tomcat adds any dependent files to the classpath dynamically when it starts up and as s

RE: XML parser

2002-11-20 Thread Tref Gare
dge or the consent of Areeba." -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 8:36 PM To: Tomcat Users List Subject: RE: XML parser Understood. And what implications would

RE: XML parser

2002-11-20 Thread Mark Schmeets
: November 20, 2002 12:34 AM To: [EMAIL PROTECTED] Subject: XML parser Hi, In my effort to parse an XML file and pull out data from it's elements where I may maninpulate them, I have downloaded the Xerces.ZIP (which incidentally is 4.8 MB - expanded to 22!), extracted it to webapps/ROOT/WEB-IN

Re[4]: XML parser

2002-11-20 Thread Jacob Kjome
h Remy that you should stop trying to override the default XML parser. While you *may* be able to override it when using JDK 1.3, you will absolutely not be able to do it with JDK 1.4 as JDK 1.4 treats the XML parsing classes (also known as "endorsed" classes) as system classes. Hence, once

Re: Re[2]: XML parser

2002-11-20 Thread Cédric Viaud
CTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 20, 2002 5:25 PM Subject: Re[2]: XML parser > Hello Charlie, > > There is actually more to it. Putting XML or DOM libraries in > WEB-INF/lib violates the Sun classloading spec which Tomcat h

Re[2]: XML parser

2002-11-20 Thread Jacob Kjome
ailto:[EMAIL PROTECTED]] >> Sent: Wednesday, November 20, 2002 12:34 AM >> To: [EMAIL PROTECTED] >> Subject: XML parser >> >> >> Hi, >> In my effort to parse an XML file and pull out data from it's >> elements where I may maninpula

RE: XML parser

2002-11-20 Thread Cox, Charlie
n/lib. Charlie > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 20, 2002 12:34 AM > To: [EMAIL PROTECTED] > Subject: XML parser > > > Hi, > In my effort to parse an XML file and pull out dat

RE: XML parser

2002-11-20 Thread Tref Gare
: Wednesday, 20 November 2002 8:28 PM To: 'Tomcat Users List' Subject: RE: XML parser Sorry to drop in so late on this one. If all you want to do is pull out some info from an XML doc, why not use JDOM (www.jdom.org) to parse it? This gives nice easy access to all elements. Steve. -O

RE: XML parser

2002-11-20 Thread Steve Beech
To: Tomcat Users List Subject: RE: XML parser No need (and some would say 'bad idea') to place the jar explicitly in the classpath. Tomcat adds any dependent files to the classpath dynamically when it starts up and as such anything in your WEB-INF/lib folders is automatically available

RE: XML parser

2002-11-20 Thread Paul_Wallace
without knowledge or the consent of Areeba." -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 8:18 PM To: Tomcat Users List Subject: RE: XML parser >It's all a b

RE: XML parser

2002-11-20 Thread Tref Gare
y offend may have been sent without knowledge or the consent of Areeba." -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 8:18 PM To: Tomcat Users List Subject: RE: XML parser

RE: XML parser

2002-11-20 Thread Paul_Wallace
choice, and update the classpath to include the three JAR files for JAXP: crimson.jar: the default XML parser, which was derived from the Java Project X parser from Sun xalan.jar: the default XSLT engine jaxp.jar: the APIs" Here's the question (one of them for now), I want to use Xerces t

Re: XML parser

2002-11-20 Thread Kwok Peng Tuck
Tref Gare wrote: DOM ..where a tree is built based on the XML file given and then traversed back and forth to get stuff out of it. That sounds about right for DOM :) -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: XML parser

2002-11-20 Thread Tref Gare
tted via email which may offend may have been sent without knowledge or the consent of Areeba." -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 6:40 PM To: Tomcat Users List Su

RE: XML parser

2002-11-19 Thread Paul_Wallace
I am looking at the article you suggested. While I am trying to digest it all.. am I right in thinking you are proposing and what the article is demonstrating is that I use the SAX approach to parse my XML (although SAX 'is not a parser'!) and not the Xerces parser? Thanks Paul. You're fine

RE: XML parser

2002-11-19 Thread Tref Gare
4:34 PM To: [EMAIL PROTECTED] Subject: XML parser Hi, In my effort to parse an XML file and pull out data from it's elements where I may maninpulate them, I have downloaded the Xerces.ZIP (which incidentally is 4.8 MB - expanded to 22!), extracted it to webapps/ROOT/WEB-INF/lib/. Is t

RE: XML parser

2002-11-19 Thread Tref Gare
he consent of Areeba." -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 4:34 PM To: [EMAIL PROTECTED] Subject: XML parser Hi, In my effort to parse an XML file and pull out data from i

Re: XML parser PS

2002-11-19 Thread Paul_Wallace
"I have downloaded the Xerces.ZIP (which incidentally is 4.8 MB - expanded to 22!), extracted it to webapps/ROOT/WEB-INF/lib/" I extrcated the xerxesImp1.jar to that location. Paul.

XML parser

2002-11-19 Thread Paul_Wallace
Hi, In my effort to parse an XML file and pull out data from it's elements where I may maninpulate them, I have downloaded the Xerces.ZIP (which incidentally is 4.8 MB - expanded to 22!), extracted it to webapps/ROOT/WEB-INF/lib/. Is this the correct location? If not, where should it resid

RE: XML parser: Xerces documentation

2002-11-19 Thread Paul_Wallace
Thanks for your most comprehensive replies! Paul.

RE: XML parser: Xerces documentation

2002-11-19 Thread Tref Gare
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 20 November 2002 1:20 PM To: [EMAIL PROTECTED] Subject: RE: XML parser: Xerces documentation Hello and thanks for that. Attempting to install and Xerces parser

RE: XML parser: Xerces documentation

2002-11-19 Thread Paul_Wallace
eem to be focussing on JSP rather than servlets/beans, it may be more to your use to have a look at the XML tag libraries. These are means of accessing the functionality provided by the various objects (in this case an XML parser) from a more simplified interface. If you haven't had a look arou

RE: XML parser

2002-11-19 Thread Tref Gare
nality you want. However, given that you seem to be focussing on JSP rather than servlets/beans, it may be more to your use to have a look at the XML tag libraries. These are means of accessing the functionality provided by the various objects (in this case an XML parser) from a more simplified in

RE: XML parser

2002-11-19 Thread Tref Gare
Sent: Tuesday, 19 November 2002 7:52 PM To: [EMAIL PROTECTED] Subject: XML parser Hi, I wish to parse XML using the Apache Tomcat server (4.1.12). I understand all recent releases support the parsing of XML. Can someone pont me in the direction of web pages / resources / whatever, wher

XML parser

2002-11-19 Thread Paul_Wallace
Hi, I wish to parse XML using the Apache Tomcat server (4.1.12). I understand all recent releases support the parsing of XML. Can someone pont me in the direction of web pages / resources / whatever, where I can get my hands on syntax to acheive this please? Thanks Paul.

RE: XML Parser for Tomcat 4.1.12

2002-10-25 Thread Ujwal Oswal
a:180) at java.lang.reflect.Method.invoke(Native Method) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203) -Original Message- From: Jean-Francois Arcand [mailto:jfarcand@;apache.org] Sent: Thursday, October 24, 2002 7:31 PM To: Tomcat Users List Subject: Re: XML Parser for Tomcat 4.1.

Re: XML Parser for Tomcat 4.1.12

2002-10-24 Thread Jean-Francois Arcand
Ujwal Oswal wrote: How do I overwrite the default xerces parser for Tomcat 4.1.12. I am having existing application on Tomcat 4.05 which works great but when I migrated to Tomcat 4.1.12. its giving me problems. I tried copying xerces.jar into "common/endorsed" directory. It gave me That the

XML Parser for Tomcat 4.1.12

2002-10-24 Thread Ujwal Oswal
How do I overwrite the default xerces parser for Tomcat 4.1.12. I am having existing application on Tomcat 4.05 which works great but when I migrated to Tomcat 4.1.12. its giving me problems. I tried copying xerces.jar into "common/endorsed" directory. It gave me errors when I started Tomcat aft

Re: xml parser in 4.0.6 and 4.1.12

2002-10-14 Thread Frank Liu
rying to migrate one application from weblogic to tomcat. > > >I was able to get it work in tomcat 4.0.6 but it fails in tomcat > > >4.1.12. The problem seems to lie in the xml parser. the jar files > > >in the "jakarta-tomcat-4.1.12/common/endorsed&q

Re: xml parser in 4.0.6 and 4.1.12

2002-10-14 Thread Frank Liu
I was able to get it work in tomcat 4.0.6 but it fails in tomcat > >4.1.12. The problem seems to lie in the xml parser. the jar files > >in the "jakarta-tomcat-4.1.12/common/endorsed" seems not compatible > >with the old ones. since the application is a bin

Re: xml parser in 4.0.6 and 4.1.12

2002-10-13 Thread Jacob Kjome
At 05:10 AM 10/14/2002 +, you wrote: >Hi all, > >I am trying to migrate one application from weblogic to tomcat. >I was able to get it work in tomcat 4.0.6 but it fails in tomcat >4.1.12. The problem seems to lie in the xml parser. the jar files >in the "jakarta-tomcat-4

xml parser in 4.0.6 and 4.1.12

2002-10-13 Thread Frank Liu
Hi all, I am trying to migrate one application from weblogic to tomcat. I was able to get it work in tomcat 4.0.6 but it fails in tomcat 4.1.12. The problem seems to lie in the xml parser. the jar files in the "jakarta-tomcat-4.1.12/common/endorsed" seems not compatible with th

RE: XML Parser question

2002-09-19 Thread Geddes, Mark (ANTS)
ISBN 0735712352 Cocoon: Building XML Applications by Matthew Langham and Carsten Ziegeler -Original Message- From: Julie Jordan [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 5:47 PM To: [EMAIL PROTECTED] Subject: XML Parser question Hi all, I am trying to create a

XML Parser question

2002-09-19 Thread Julie Jordan
Hi all, I am trying to create a simple XML transformation. In my directory: tomcat/lib/container I have the crimson.jar and the xalan.jar I created a directory called: tomcat/webapps/cocoon/election where I have put my xml, xsl, and dtd files When I point my browser to: http://IPnamehere:8080/co

XML Parser question

2002-09-18 Thread Julie Jordan
Hi all, I am trying to create a simple XML transformation. In my directory: tomcat/lib/container I have the crimson.jar and the xalan.jar I created a directory called: tomcat/webapps/cocoon/election where I have put my xml, xsl, and dtd files When I point my browser to: http://IPnamehere:8080/co

RE: Can I switch XML Parser with Tomcat 3.2.4

2002-05-02 Thread Brandon Cruz
Subject: RE: Can I switch XML Parser with Tomcat 3.2.4 I am using Tomcat 4.0.3. The way Tomcat4.x classloaders work, your webapp will look for a class first in your WEB-INF/lib and WEB-INF/classes directory before going up the chain of classloaders. Tomcat 3.2 may handle things differently like

RE: Can I switch XML Parser with Tomcat 3.2.4

2002-05-02 Thread PChaganti
I am using Tomcat 4.0.3. The way Tomcat4.x classloaders work, your webapp will look for a class first in your WEB-INF/lib and WEB-INF/classes directory before going up the chain of classloaders. Tomcat 3.2 may handle things differently like you said. prabhakar chaganti

RE: Can I switch XML Parser with Tomcat 3.2.4

2002-05-02 Thread Brandon Cruz
PROTECTED]] Sent: Thursday, May 02, 2002 10:23 AM To: Tomcat Users List Subject: Re: Can I switch XML Parser with Tomcat 3.2.4 Add crimson.jar to the the WEB-INF/lib in your webapp. That will make the classes from crimson.jar available to only your webapp while Tomcat and other apps will use the

Re: Can I switch XML Parser with Tomcat 3.2.4

2002-05-02 Thread PChaganti
Add crimson.jar to the the WEB-INF/lib in your webapp. That will make the classes from crimson.jar available to only your webapp while Tomcat and other apps will use the one shipped with Tomcat. -prabhakar chaganti > I am using Tomcat 3.2.4, can I switch from

Can I switch XML Parser with Tomcat 3.2.4

2002-05-02 Thread Brandon Cruz
I am using Tomcat 3.2.4, can I switch from using parser.jar to using crimson.jar instead? One of our web applications requires the use of some classes that are in Crimson, but not parser. Thanks! Brandon -- To unsubscribe: For additional commands:

Re: tomcat 4, default XML parser, XSLT, Xalan Configuration

2002-03-18 Thread Dave Makower
We had exactly the same problem. Turns out it's a known bug (or perhaps "mis-feature") in Tomcat 4.0.3. We downloaded 4.0.4b1, and it worked again without us having to change anything in our code. On 3/17/02 9:54 AM, "Brendan Colthurst" <[EMAIL PROTECTED]> wrote: > > I had a simple XML / XSL

Re: tomcat 4, default XML parser, XSLT, Xalan Configuration

2002-03-17 Thread Brendan Colthurst
Tomcat User List, Okay, I always do this -- post a problem, then post the solution... I just had to: 1. Download the source for the xalan package: http://xml.apache.org/dist/xalan-j/xalan-j_2_3_1-src.tar.gz 2. Remove their xercesImpl.jar 3. Replace it with the xerces.jar that came with tomcat.

tomcat 4, default XML parser, XSLT, Xalan Configuration

2002-03-17 Thread Brendan Colthurst
I had a simple XML / XSLT transform utility working with tomcat 3.2.3 using the xalan and xerces libraries. I upgraded to tomcat 4.0.3, and now the utility throws configuration exceptions. I'm having trouble getting the details of the exceptions because they're all wrapped up in servlet except

Re: Problems using own XML parser

2002-03-13 Thread Yoav Shapira
give and forget; the > wise forgive but do not forget. > > Thomas Szasz, The Second Sin (1973) > > -Original Message- > From: Rick K [mailto:[EMAIL PROTECTED]] > Sent: 13 March 2002 06:09 > To: Tomcat Users List > Subject: RE: Problems using own XML parser > >

RE: Problems using own XML parser

2002-03-13 Thread John Wadkin
forget; the wise forgive but do not forget. Thomas Szasz, The Second Sin (1973) -Original Message- From: Rick K [mailto:[EMAIL PROTECTED]] Sent: 13 March 2002 06:09 To: Tomcat Users List Subject: RE: Problems using own XML parser Maybe you covered this before, but: Why doesn't Xerces

RE: Problems using own XML parser

2002-03-12 Thread Rick K
ve nor forget; the naive > forgive and forget; the > wise forgive but do not forget. > > Thomas Szasz, The Second Sin (1973) > > > -Original Message- > From: Cox, Charlie [mailto:[EMAIL PROTECTED]] > Sent: 12 March 2002 16:27 > To: 'Tomcat Users List&

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
tupid neither forgive nor forget; the naive forgive and forget; the wise forgive but do not forget. Thomas Szasz, The Second Sin (1973) -Original Message- From: Cox, Charlie [mailto:[EMAIL PROTECTED]] Sent: 12 March 2002 16:27 To: 'Tomcat Users List' Subject: RE: Problems using

RE: Problems using own XML parser

2002-03-12 Thread Cox, Charlie
see the archives or bugzilla as this was addressed in 4.0.3 or 4.0.4b1(I don't remember which one) Charlie > -Original Message- > From: John Wadkin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 12, 2002 10:59 AM > To: 'Tomcat Users List' > Subject: RE:

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
Thomas Szasz, The Second Sin (1973) -Original Message- From: Evguenia Krylova [mailto:[EMAIL PROTECTED]] Sent: 12 March 2002 15:52 To: Tomcat Users List Subject: RE: Problems using own XML parser Isn't it that udner Tomcat 4x you can specify class path for a context in server.xml.

RE: Problems using own XML parser

2002-03-12 Thread Evguenia Krylova
#x27;s but call alphred's classes directly. Ev -Original Message- From: John Wadkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:31 AM To: Tomcat Users List (E-mail) Subject: RE: Problems using own XML parser All, I'd appreciate a response on this otherwise

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
ted more errors! The docs give the impression that it's a "simple" case of moving xerces.jar and putting your own parser in /WEB-INF/lib, but this just doesn't work. Thanks, John -Original Message- From: John Wadkin Sent: 09 March 2002 03:04 To: Tomcat Users List

Problems using own XML parser

2002-03-09 Thread John Wadkin
All, Tomcat 4.0.1 Apache 1.3 mod_WebApp Solaris 8 I'm trying to use the aelfred parser in a servlet. I've read the docs on class loaders and XML but no luck so far. I moved xerces.jar from common/lib to server/lib and re-started TomCat. A couple of errors appeared in catalina.out relating to th

RE: TomCat's XML parser

2002-02-20 Thread Arnaud Heritier
di 19 fevrier 2002 23:09 > A:Tomcat Users List > Objet:RE: TomCat's XML parser > > > Tomcat 4.0.2 final release has included the xerces.jar (xerces 1, I think). > This version does include a SAX parser. And AFAIK, you could copy your own > xml parser (.jar) in your

RE: TomCat's XML parser

2002-02-19 Thread rsequeira
Tomcat 4.0.2 final release has included the xerces.jar (xerces 1, I think). This version does include a SAX parser. And AFAIK, you could copy your own xml parser (.jar) in your CATALINA_HOME/common/lib folder. Remember to remove xerces.jar when you do this. Or else you might have a conflict

RE: TomCat's XML parser

2002-02-19 Thread Mark
hing offensive in a >previous post :) > >Would be great if someone would reply... > >John > >> -Original Message- >> From: Kapasi, Mehjabin [mailto:[EMAIL PROTECTED]] >> Sent: 19 February 2002 20:27 >> To: 'Tomcat Users List' >> Subj

RE: TomCat's XML parser

2002-02-19 Thread John Wadkin
Tomcat Users List' > Subject: RE: TomCat's XML parser > > > Hi, > I have the same issue. I would like to use another parser > instead of Xerces. > Did you get a reply to this question? If yes, could you let me know? > thank you > -Mehjabin > > -Origin

RE: TomCat's XML parser

2002-02-19 Thread Kapasi, Mehjabin
Users List (E-mail) Subject: TomCat's XML parser All, I'm in the process of setting up a (Unix) system ready for a servlet. I'm told by the person who wrote the servlet that it needs a XML parser. He recommends Xerces and (apparently) I'll also need SAX. I know that TomCat u

TomCat's XML parser

2002-02-18 Thread John Wadkin
All, I'm in the process of setting up a (Unix) system ready for a servlet. I'm told by the person who wrote the servlet that it needs a XML parser. He recommends Xerces and (apparently) I'll also need SAX. I know that TomCat uses Xerces but which version? And does that include SA

Setup problem on Tomcat 4.0 and Java2 SDK v1.4 (XML Parser)

2001-12-05 Thread Wong, Ken LY
Title: Setup problem on Tomcat 4.0 and Java2 SDK v1.4 (XML Parser) Dear all, I'm now trying to setup a Tomcat 4.0 which co-operate with Java2SDK v1.4. My requirment is that, I need to use XML parser (JAXP), but due to lack of document support, I can't have it works properly. Co

Re: New xml parser on startup in Tomcat ?

2001-09-22 Thread Jonathan Eric Miller
n" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 3:38 AM Subject: Re: New xml parser on startup in Tomcat ? > Franck wrote: > > It works perfectly, although Tomcat is veery long to start (almost > > as

Re: New xml parser on startup in Tomcat ?

2001-09-20 Thread Anthony Green
Franck wrote: > It works perfectly, although Tomcat is veery long to start (almost > as long as netbeans !) > The point is that there is no JIT implementation for Linux PPC :-( > But still, it's long, even after I commented out the Tomcat-Apache in > server.xml... > > Any idea on how to ma

Re: New xml parser on startup in Tomcat ?

2001-09-20 Thread Franck Routier
need to figure out the right setting for Blackdown. > >Craig McClanahan > > >On Thu, 13 Sep 2001, Franck Routier wrote: > > > Date: Thu, 13 Sep 2001 14:56:41 +0200 > > From: Franck Routier <[EMAIL PROTECTED]> > > Reply-To: [EMAIL PROTECTED] > > To: [EMAIL

Re: New xml parser on startup in Tomcat ?

2001-09-13 Thread Craig R. McClanahan
r Blackdown. Craig McClanahan On Thu, 13 Sep 2001, Franck Routier wrote: > Date: Thu, 13 Sep 2001 14:56:41 +0200 > From: Franck Routier <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: New xml parser on startup in Tomcat ? > > Hi, &

New xml parser on startup in Tomcat ?

2001-09-13 Thread Franck Routier
Hi, I'm still fighting with the same problem : Tomcat, just out of the box, won't start and gives me a OutOfMemoryError on startup, then dies. Apparently, it does this while reading it's conf file. The problem occurs with versions 3.3-b2 and 4.0-rc1. The interresting point is that version 3.2

RE: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread GOMEZ Henri
>I do not know whether it is JAXP-compatible and native but some MS XML >parser does exist... I'm not sure we will ever saw a MS XML parser on Linux and may never a MS Java XML Parser >> I started think at this that's why my latest xerces-j RPM have a : >> >&

Re: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread Sergey V. Udaltsov
GOMEZ Henri wrote: > IBM xml4j is at 99% xerces-j > Did MS got a jav parser ? I do not know whether it is JAXP-compatible and native but some MS XML parser does exist... > I started think at this that's why my latest xerces-j RPM have a : > > Provides jaxp 1.1 Great! This

RE: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread GOMEZ Henri
>> The XML parser should be included in the distro since new and average >> users MAY never use XML in their apps. >OK. My vote is for xerces (it is good and has same licence). >Also, it would be good to have the list of tomcat-compatible parsers. >At the moment, I trie

Re: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread Sergey V. Udaltsov
> The XML parser should be included in the distro since new and average > users MAY never use XML in their apps. OK. My vote is for xerces (it is good and has same licence). Also, it would be good to have the list of tomcat-compatible parsers. At the moment, I tried jaxp 1.1 and latest

Re: XML parser: old version

2001-06-22 Thread Stan Devitt
Correct. Putting xerces.jar and xalan.jar at the start of the class path seems to work fine. Stan D. - Original Message - From: "Sam Newman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 22, 2001 4:43 AM Subject: Re: XML parser: old versi

RE: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread GOMEZ Henri
>> I launch that poll to see if which XML parser RPMS users want to >> see included by default. >Probably no XML parser should be included. . Just document the >fact that >admin should synlink necessary jars to the tomcat lib >directory. IMHO it >is wrong idea to inclu

Re: [POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread Sergey V. Udaltsov
> I launch that poll to see if which XML parser RPMS users want to > see included by default. Probably no XML parser should be included. . Just document the fact that admin should synlink necessary jars to the tomcat lib directory. IMHO it is wrong idea to include parser with any java app

Re: XML parser: old version

2001-06-22 Thread Sam Newman
Someone said he managed to get Xerces work without too mich bother. He simply wedited the tomcat.bat/tomcat.sh startup script to put the xerces xml parser in the classpath instead of the standard one. My only guess as to why xerces is not used by default is Tomcat's history as being

[POLL] Tomcat 3.x RPMS : Which XML Parser to be put in ? : WAS : XML parser: old version

2001-06-22 Thread GOMEZ Henri
Hi Sergey, >With Tomcat 3.2.2 RPMS, I got some XML parser. >I suspect it is sun's JAXP implementation 1.0. It DOES NOT support >namespaces (I found it from the error messages:) so it is not possible >to use XSL in JSPs/Beans/servlets. That's a known problem. I packag

XML parser: old version

2001-06-22 Thread Sergey V. Udaltsov
Hi all With Tomcat 3.2.2 RPMS, I got some XML parser. I suspect it is sun's JAXP implementation 1.0. It DOES NOT support namespaces (I found it from the error messages:) so it is not possible to use XSL in JSPs/Beans/servlets. Will it be any problem to use JAXP 1.1? Or Xerces? What i

Re: Finding the XML parser in Tomcat

2001-06-18 Thread Dmitri Colebatch
s dim > > Eoin. > -Original Message- > From: Frank Lawlor [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 18, 2001 7:20 AM > To: Tomcat (E-mail) > Subject: Finding the XML parser in Tomcat > > In my VisualAge Java development environemnt (jdk 1.2.2) I

RE: Finding the XML parser in Tomcat

2001-06-18 Thread Eoin Woods
I think this has come up before. Tomcat has an XML parser built in (it reads XML files for configuration). To use Xerces in our servlets, we had to add "xerces.jar" to the front of the CLASSPATH in the tomcat.sh script. Eoin. -Original Message- From: Frank Lawlor [mai

Finding the XML parser in Tomcat

2001-06-18 Thread Frank Lawlor
In my VisualAge Java development environemnt (jdk 1.2.2) I can say, for example, Parser parser = ParserFactory.makeParser("org.apache.xerces.parsers.SAXParser"); but when I deploy to a standalone Tomcat environment, I get a class not found on the parser name, even tho I put the jar in Tomcat's W

RE: xml parser

2001-06-01 Thread William Kaufman
cally, Xerces) -- Bill K. > -Original Message- > From: Zsolt Koppany [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 01, 2001 12:31 AM > To: [EMAIL PROTECTED] > Subject: xml parser > > > Hi, > > do tomcat and ant use an xml parser? If yes wher

xml parser

2001-06-01 Thread Zsolt Koppany
Hi, do tomcat and ant use an xml parser? If yes where can I find the documentation of the xml parser and some examples would be useful too. Zsolt -- Zsolt Koppany Intland GmbH www.intland.com Schulze-Delitzsch-Strasse 16 D-70565 Stuttgart Tel: +49-711-7221873 Fax: +49-711-7871017

  1   2   >