running JAXP parser within JSP pages

2004-05-04 Thread Paul
how to set up JAXP to run with Tomcat? would it not be configured as a resource, the same way Java mail or a JDBC driver would be configured? -paul.

Re: 3.3.X USE (JAXP) v1.1 OR 1.0

2003-03-11 Thread Bill Barker
Tomcat 3.3.x ships with JAXP 1.1. Unlike later versions of Tomcat, you can use any XML parser you like in your web-app by placing it in WEB-INF/lib, or globally by placing it in $TOMCAT_HOME/lib/apps. "Shawn" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >

3.3.X USE (JAXP) v1.1 OR 1.0

2003-03-11 Thread Shawn
Does anyone know if Tomcat 3.3.x uses JAXP 1.1 or 1.0? Our open source project needs 1.1 and I need to figure out what I should be telling people in terms of what works. 3.2.x has 1.0 I believe. TIA, -- Shawn <[EMAIL PROTEC

Re: Use JAXP 1.2 Parser with Tomcat 4.1.17

2002-12-18 Thread Saurabh Arora
I am using 1.4.1 , can i put JAXP 1.2 jars in the common\endorsed >>> [EMAIL PROTECTED] 12/19/02 12:17PM >>> "Saurabh Arora" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I would like to know that can we

Re: Use JAXP 1.2 Parser with Tomcat 4.1.17

2002-12-18 Thread Bill Barker
"Saurabh Arora" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I would like to know that can we use JAXP 1.2 XML parser with tomcat > 4.1.17 (by replacing common\endorsed. The release notes point out use of > JAXP 1.1 par

Use JAXP 1.2 Parser with Tomcat 4.1.17

2002-12-18 Thread Saurabh Arora
I would like to know that can we use JAXP 1.2 XML parser with tomcat 4.1.17 (by replacing common\endorsed. The release notes point out use of JAXP 1.1 parser. I would also like to know why is JAXP 1.2 XML parser is not bundled with tomcat 4.1.17. with regards saurabh -- To unsubscribe, e

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-26 Thread Soefara Redzuan
Sorry for the very very late follow up to my problem. Eventually solved it. I later found out it was a clash with the XML-RPC libraries which I forgot were also in WEB-INF/lib. I think it's a bug in the Apache XML-RPC libs as somebody else experienced the same problem. So, I'v

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-13 Thread Kwok Peng Tuck
l) xerces.jar How did dom.jar , xalan.jar, mysql.jar end up there ? Generally if you wish to use any other jar(s) you put them in {webapps root} /WEB-INF/lib . Soefara Redzuan wrote: >>> I'd still like to keep jaxp installed on my machine for other >>> java applicat

AW: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-13 Thread Ralph Einfeldt
richt- > Von: Soefara Redzuan [mailto:[EMAIL PROTECTED]] > Gesendet: Freitag, 13. September 2002 10:20 > An: [EMAIL PROTECTED] > Betreff: Re: Running XML-parsing servlets on Tomcat, using JAXP ? > > who or what is Jasper ? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTE

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-13 Thread Soefara Redzuan
>>I'd still like to keep jaxp installed on my machine for other >>java applications. This won't affect Tomcat at all, will it ? > >NO, It should not, I recommend you do not place the jar file in your >classpath. We never know... I tried removing the jars fr

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-13 Thread Soefara Redzuan
My oh my, Jake, thank you so much for this most incredible explanation of the Endorsed mechanism, the differences between the various versions of Tomcat as well as JDK1.3/1.4. This is such a valuable body of knowledge, and so well explained, that I hope it will be archived by many for future refe

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-12 Thread Jean-Francois Arcand
Soefara Redzuan wrote: > > Thank you very much for replying, Jean-Francois, > >> From: Jean-Francois Arcand <[EMAIL PROTECTED]> >> >> You don't need the jax-pack for your problem. Under >> {CATALINA_HOME}/common/endorsed, just copy the xerces.jar an

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-12 Thread Jacob Kjome
much for replying, Jean-Francois, > >>From: Jean-Francois Arcand <[EMAIL PROTECTED]> >> >>You don't need the jax-pack for your problem. Under >>{CATALINA_HOME}/common/endorsed, just copy the xerces.jar and the >>jaxp-ri.jar file. Tomcat will uses this folder f

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-12 Thread Soefara Redzuan
Thank you very much for replying, Jean-Francois, >From: Jean-Francois Arcand <[EMAIL PROTECTED]> > >You don't need the jax-pack for your problem. Under >{CATALINA_HOME}/common/endorsed, just copy the xerces.jar and the >jaxp-ri.jar file. Tomcat will uses this folder

Re: Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-12 Thread Jean-Francois Arcand
You don't need the jax-pack for your problem. Under {CATALINA_HOME}/common/endorsed, just copy the xerces.jar and the jaxp-ri.jar file. Tomcat will uses this folder for selecting which parser to use (so crimson will not be used). -- Jeanfrancois Soefara Redzuan wrote: > Has anybody

Running XML-parsing servlets on Tomcat, using JAXP ?

2002-09-12 Thread Soefara Redzuan
Has anybody managed to run XML-parsing servlets on Tomcat 4 using JAXP? If so, could you please help me with the XML configuration for Tomcat because I keep getting class clashes. Here's what I've done so far, 1. Downloaded the Java XML Pack from http://java.sun.com/xml/javaxmlpa

Re: [OFF-TOPIC] Tomcat 4.0.4 LE, Eclipse, JAXP, JAXB and parsing problem

2002-08-28 Thread skraaatch
the only pointer i can give is that i heard there are conflicts in the jars relating to xml processing - jaxp was specifically mentioned. so as always it's a classpath problem. perhaps make sure you don't have any other xml processing jars set in your system classpath before running t

[OFF-TOPIC] Tomcat 4.0.4 LE, Eclipse, JAXP, JAXB and parsing problem

2002-08-28 Thread Cédric Viaud
Hi, maybe is this off-topic. In case ignore this, and sorry for bothering. I develop an application running under Tomcat 4.0.4 LE (light edition) wich uses JAXP. I use JAXP for XML parsing, and XML transformation. It almost work fine for everything. I also use JAXB to map XML file into Java

RE: JAXP 1.1 for Tomcat 4.0

2002-08-28 Thread Shapira, Yoav
day, August 28, 2002 9:00 AM >To: 'Tomcat Users List' >Subject: JAXP 1.1 for Tomcat 4.0 > >Hi, > >I am trying to build Tomact 4.0. The instructions are to download and >Install >JAXP 1.1 (FINAL VERSION) from >http://java.sun.com/xml/download.html > >However

JAXP 1.1 for Tomcat 4.0

2002-08-28 Thread Shah, Kishor (Kishor)
Hi, I am trying to build Tomact 4.0. The instructions are to download and Install JAXP 1.1 (FINAL VERSION) from http://java.sun.com/xml/download.html However, this url does not have this version. I serached various links on this site but w/o success. 1) Can anyone point to other site where I

Tomcat 3.2.3, WEB-INF/lib, JAXP 1.2 and JAXM 1.0.1

2002-06-06 Thread Ben Starr
Is it possible to get a web app in Tomcat 3.2.3 to work with JAXP 1.2 and/or JAXM 1.0.1 without having to place the JARs in the $TOMCAT_HOME/lib directory? (ie: by placing them in the WEB-INF/lib directory) It works fine on Tomcat 4.0.1 but I can only get it to work with Tomcat 3.2.3 by placing

URGENT: Is the xerces.jar with TC 4.0.1 jaxp 1.1 compliant?

2002-03-04 Thread Kapasi, Mehjabin
Hi, Does anyone know if xerces.jar with TC 4.0.1 is jaxp1.1 compliant? If I want to use crimson.jar, do i need to do a lot of changes to migrate from xerces to crimson? I would appreciate any kind of help on this soon! thank you -Mehjabin -- To unsubscribe: For addi

Re: JAXP -- File had a virus.

2002-02-15 Thread Mihai Gheorghiu
s List <[EMAIL PROTECTED]> Date: Friday, February 15, 2002 10:19 AM Subject: Re: JAXP -- File had a virus. Please note that the file you sent me was packed with a virus. At 10:04 AM 2/15/02 -0500, you wrote: >The following came from Anti-Virus (S5-CCR-R1) NRCan.RNCan: > >The Anti V

Re: JAXP -- File had a virus.

2002-02-15 Thread Micael Padraig Og mac Grene
rus has been removed >from the message sent to with the subject "Re: JAXP" if it could not be >cleaned. > >Le logiciel Anti-Virus Antigen a détecté le virus ExceedinglyInfected dans >le fichier jaxp.jar. Le virus ExceedinglyInfected a été supprimé du message >envoyé à av

Re: JAXP

2002-02-15 Thread Mihai Gheorghiu
The following came from Anti-Virus (S5-CCR-R1) NRCan.RNCan: The Anti Virus software Antigen found jaxp.jar infected with ExceedinglyInfected virus. The ExceedinglyInfected virus has been removed from the message sent to with the subject "Re: JAXP" if it could not be cleaned. Le log

Re: JAXP

2002-02-15 Thread Mihai Gheorghiu
Is this what you are looking for? I found it included in Poolman. -Original Message- From: Micael Padraig Og mac Grene <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> Date: Friday, February 15, 2002 9:40 AM Subject: Re: JAXP >Not in there. Probably dep

Re: JAXP

2002-02-15 Thread Micael Padraig Og mac Grene
Not in there. Probably deprecated forever. At 09:52 AM 2/14/02 -0500, you wrote: >Hi, >It's in the Sun XML pack (among other places), at >http://java.sun.com/xml/downloads/javaxmlpack.html > >Yoav Shapira > > >[EMAIL PROTECTED] wrote: > > > > I got it about 6 months ago and you'r

Re: JAXP

2002-02-14 Thread Micael Padraig Og mac Grene
I got the pack, and it was not in there. I will try again. Fourth time. At 09:52 AM 2/14/02 -0500, you wrote: >Hi, >It's in the Sun XML pack (among other places), at >http://java.sun.com/xml/downloads/javaxmlpack.html > >Yoav Shapira > > >[EMAIL PROTECTED] wrote: > > > > I got i

Re: JAXP

2002-02-14 Thread Yoav Shapira
Hi, It's in the Sun XML pack (among other places), at http://java.sun.com/xml/downloads/javaxmlpack.html Yoav Shapira [EMAIL PROTECTED] wrote: > > I got it about 6 months ago and you're right, I can't seem > to find it again. > > >> Where did y

RE: JAXP

2002-02-14 Thread BBui
Wednesday, February 13, 2002 11:22 PM To: Tomcat Users List Subject: Re: JAXP Where did you find jaxp.jar, if you did? I have been looking everywhere for t

Re: JAXP

2002-02-13 Thread Micael Padraig Og mac Grene
Where did you find jaxp.jar, if you did? I have been looking everywhere for that damned thing. I have assumed it is out of circulation? At 08:13 PM 2/13/02 -0600, you wrote: > Hi all, > > I am using jaxp and this is the error I get when I try to >

JAXP

2002-02-13 Thread BBui
Hi all, I am using jaxp and this is the error I get when I try to instantiate my parser class. Please tell me why. Also, from the error message, it seems that it could not find the ContentHandler class in the DefaultHandler class. I do not understand this

Re: Tomcat 4.0.1 Installation Problem (JAXP 1.1 Download)

2001-12-28 Thread Yoav Shapira
Hi, 1) I don't remember having to download JAXP myself for tomcat installation. Doesn't tomcat come with and use Xerces internally? 2) You can get JAXP binaries, including xalan.jar, by download the Java XML Pack (fall '01 is tested with tomcat 4.0.1, I don't know about th

Tomcat 4.0.1 Installation Problem (JAXP 1.1 Download)

2001-12-28 Thread Stan Levine
I am trying to install Tomcat 4.0.1 on a Redhat Linux 7.0 box. I am up to the part where I have to download a binary distribution of JAXP 1.1 from http://java.sun.com/xml/download.html. I have downloaded this and it turns out to be a .ps (postscript) file. It doesn't look like a binary

Re: JAXP

2001-12-13 Thread Rick R
I have found that SAX is pretty much the same whether you use JAXP or Xerces. I know IBM has some articles on their site. http://www-106.ibm.com/developerworks/java/?loc=dwmain --- [EMAIL PROTECTED] wrote: > Hi all, > > Does anyone know of a site that has

Re: JAXP

2001-12-13 Thread Mark
In offline-mode, you may find the O'Reilly book 'Java and XML' to be a decent resource for Java SAX and DOM parsing. At 05:27 PM 12/13/2001 -0600, you wrote: >Here is the first place that I started reading. > >http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/index.

Re: JAXP

2001-12-13 Thread Denny Chambers
Here is the first place that I started reading. http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/index.html [EMAIL PROTECTED] wrote: > > Hi all, > > Does anyone know of a site that has good JAXP examples? > Thanks, BB. > > -- > T

RE: JAXP

2001-12-13 Thread Sobeck, James (ISS Atlanta)
I don't know of any off hand, but here are a few functions the I wrote that might help you get started with JAXP. just read the javadocs and look at this code and it is not that hard. good luck, Jimmy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thu

JAXP

2001-12-13 Thread BBui
Hi all, Does anyone know of a site that has good JAXP examples? Thanks, BB. -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>

JAXP 1.1 and Tomcat 3.2.3

2001-08-30 Thread Renato Weiner
Hi all, I'm trying to build Tomcat 3.2.3 with JAXP 1.1 and I have this error: Buildfile: build.xml BUILD FAILED javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.SAXParserFactoryImpl

Re: newbies question: tomcat & jaxp-1.1

2001-08-30 Thread Pierre-Yves . Verdon
i just set my CLASSPATH for /foo/bar/fud/jaxp-1.1/parser.jar instead of /foo/bar/fud/jaxp-1.1/ and it's work. Ludovic Maitre wrote: > > Hello, > > you can rename your crimson.jar file to parser.jar, it should be work > (this trick work for Cocoon2 who use jaxp1.

Re: newbies question: tomcat & jaxp-1.1

2001-08-30 Thread Pierre-Yves . Verdon
unfortunately, this tips don't work for jaxp with tomcat thanks for your help Ludovic Maitre wrote: > > Hello, > > you can rename your crimson.jar file to parser.jar, it should be work > (this trick work for Cocoon2 who use jaxp1.1 or xerces, i don't > rem

Re: newbies question: tomcat & jaxp-1.1

2001-08-29 Thread Ludovic Maitre
Hello, you can rename your crimson.jar file to parser.jar, it should be work (this trick work for Cocoon2 who use jaxp1.1 or xerces, i don't remember, read xml.apache.org/cocoon2 for more info). [EMAIL PROTECTED] wrote: > > hi, > i have just a little problem, i'm using jax

newbies question: tomcat & jaxp-1.1

2001-08-29 Thread Pierre-Yves . Verdon
hi, i have just a little problem, i'm using jaxp-1.1. But jaxp-1.1 didn't contain the file parser.jar. The xml parser for jaxp seems to be crimson.jar [verdon@pc-ccri-11 jaxp-1.1]# ls License-ASF License-W3C.html docs install.html readme.htmlxalan.jar Licen

RPM of 3.3m3 - XERCES-J instead of JAXP - Agree ?

2001-06-05 Thread GOMEZ Henri
Just to comment the RPM building : In my TC 3.3-m3 RPM, I choose to use xerces-j >= 1.2 instead of the jaxp 1.1 present on TC 3.3 I add the RPM dependency and didn't install jaxp.jar and parser.jar. At install time the RPM make a link to xerces in common lib : ln -s /usr/share/java/xe

jaxp/crimson/xalan

2001-05-28 Thread Dante le Poole
hi, I have a apache 1.3.19/tomcat 3.2.1/w2k install with an app that using Xalan. Everything was working perfectly, though to get it all working I had to play around with my classpath, with the jaxp and crimson jars, to avoid NoSuchMethodErrors. Since then I've played around with some

Re: JAXP used by Tomcat 3.2.1

2001-05-25 Thread unplug
try to use 1.0.1. It contains 2 jar files. "WEST, Peter" wrote: > > hello, > > I'm using Tomcat 3.2.1 and need to know what version of JAXP it is using. > The release notes do not mention this, and I cant see it on various Jakarta > websites. > &g

JAXP used by Tomcat 3.2.1

2001-05-25 Thread WEST, Peter
hello, I'm using Tomcat 3.2.1 and need to know what version of JAXP it is using. The release notes do not mention this, and I cant see it on various Jakarta websites. In the lib directory is jaxp.jar and parser.jar Does anybody know what versions these are for Tomcat 3.2.1 ? Thanks,

Problems upgrading Tomcat with JAXP 1.1

2001-05-18 Thread Christian Rauh
Dear People, I had to upgrade the JAXP on Tomcat from the bundled version, 1.0, to 1.1. Everything works fine except that now I cannot use international characters like "ã" or "ú" on the web.xml files. When I use those characters I get an exception: -- start of except

JDOM and JAXP

2001-04-19 Thread Steffen Gransow
Hi, I wrote a tiny servlet that builds a JDom-document from a mySQL database table. After building the document in memory I want the document to be transformed to HTML (using a xsl-stylesheet and JAXP/Trax). This process fails. When I use the code to write the result to a file it works. When I

Re: TC 4.0 20010314: STILL HAS sealing violation BUG for JSP relatedto JAXP

2001-03-15 Thread Craig R. McClanahan
On Thu, 15 Mar 2001, David Duddleston wrote: > > Just a head up. I'm still getting the sealing violation BUG. Works fine with > Servlets, but not JSP. > > TC 4.0 20010314 > > javax.servlet.SecurityException: sealing violation > > Can you please submit a bug report http://nagoya.apac

TC 4.0 20010314: STILL HAS sealing violation BUG for JSP related to JAXP

2001-03-14 Thread David Duddleston
Just a head up. I'm still getting the sealing violation BUG. Works fine with Servlets, but not JSP. TC 4.0 20010314 javax.servlet.SecurityException: sealing violation

Re: Don't try to mix jaxp-1.1ea with Tomcat!

2001-03-13 Thread Leo Tai
>From: Duane Morse >Subject: Don't try to mix jaxp-1.1ea with Tomcat! >Date: Thu, 30 Nov 2000 15:52:03 -0700 >I've tried for 3 days to get Tomcat 3.2 (b8 and now the final release to work with Sun's 1.1 early release of XML parsing software (jaxp-1.1ea), without suc

Tomcat, Jaxp, Xalan

2001-03-01 Thread Scott Walter
Help! I am trying to do xml transformation with tomcat. I want to use the xalan transformation engine. However the jaxp.jar that is included in the tomcat lib is getting in the way. I keep on getting a "Namespace not supported by parser" exception. If I remove jaxp.jar and parser.jar from the

Re: Jaxp and Classpath modification????

2000-12-04 Thread Jim Rudnicki
- Original Message - > I see that Tomcat 3.2b8 at startup is including the JAXP XML parser jar > files from the $TOMCAT_HOME/lib directory in my CLASSPATH. That will NOT > work for me - I'm trying to use the Xerces XML parser in a servlet and the > JAXP DOM1

Jaxp and Classpath modification????

2000-12-04 Thread brent . johnson
I see that Tomcat 3.2b8 at startup is including the JAXP XML parser jar files from the $TOMCAT_HOME/lib directory in my CLASSPATH. That will NOT work for me - I'm trying to use the Xerces XML parser in a servlet and the JAXP DOM1 implementation is overriding the Xerces implementation.

Don't try to mix jaxp-1.1ea with Tomcat!

2000-11-30 Thread Duane Morse
I've tried for 3 days to get Tomcat 3.2 (b8 and now the final release0 to work with Sun's 1.1 early release of XML parsing software (jaxp-1.1ea), without success, so if you're looking for XML parsers to use with your Tomcat build, don't use these! Duane Morse, Eldorado Com