Matt..

> Nope, it uses Crimson APIs; not JAXP. Ask Macromedia if you don't

I dont think this is right...

You can use JAXP which enables you to write code independent of Vendor
Parsing API's(Crimson, Xerces...etc)

O'Rielly Java and XML book elaborates on this and i have also seen this
happen in my DOM Parser.

If you are using J2SE 1.4.. this comes standard with JAXP and Crimson XML
Parsing API's.
import javax.xml.parsers.*;
import org.w3c.dom.*;

Now, if you download Xerces-j 2.5.0 (xerces.jar has changed to 2 files
xercesImpl.jar and xml-apis.jar)
and the 2 files are in your CLASSPATH, all you have do is Recompile your
code and the code will
start using the Xerces API's.

JAXP just gets the Default Implementation..
 DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
 DocumentBuilder db = dbf.newDocumentBuilder();

So the code is independent of the Vendor Parser API's.

I guess you could say
JAXP Or JDOM... and Crimson Or Xerces

If JAXP API Impmentations are used.. you can use any parser you want.

Joe Eugene



----- Original Message ----- 
From: "Matt Liotta" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 08, 2003 5:00 PM
Subject: Re: [CFCDev] Java DOM API's(Crimson/Xerces) in CFMX 6.1 Or RedSky


> Nope, it uses Crimson APIs; not JAXP. Ask Macromedia if you don't
> believe me.
>
> -Matt
>
> On Friday, August 8, 2003, at 04:55 PM, Samuel Neff wrote:
>
> > I'm not sure what you mean by "CFMX J2EE phase 2" but CFMX 6.1 still
> > uses
> > JAXP.
> >
> > Sam
> >
> >
> > ----------------------------------------------
> > Blog:  http://www.rewindlife.com
> > Chart: http://www.blinex.com/products/charting
> > ----------------------------------------------
> >
> >
> >
> >> -----Original Message-----
> >> From: [EMAIL PROTECTED]
> >> [mailto:[EMAIL PROTECTED] On Behalf Of Matt Liotta
> >> Sent: Wednesday, August 06, 2003 8:22 PM
> >> To: [EMAIL PROTECTED]
> >> Subject: Re: [CFCDev] Java DOM API's(Crimson/Xerces) in CFMX
> >> 6.1 Or RedSky
> >>
> >> As of CFMX J2EE phase 2, CFMX uses Crimson and not JAXP for XML
> >> processing. Thus, configuring your J2EE application server to use a
> >> JAXP parser other than Crimson will be a problem.
> >>
> >> -Matt
> >
> > ----------------------------------------------------------
> > You are subscribed to cfcdev. To unsubscribe, send an email
> > to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev'
> > in the message of the email.
> >
> > CFCDev is run by CFCZone (www.cfczone.org) and supported
> > by Mindtool, Corporation (www.mindtool.com).
> >
>
> ----------------------------------------------------------
> You are subscribed to cfcdev. To unsubscribe, send an email
> to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev'
> in the message of the email.
>
> CFCDev is run by CFCZone (www.cfczone.org) and supported
> by Mindtool, Corporation (www.mindtool.com).

----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email
to [EMAIL PROTECTED] with the word 'unsubscribe cfcdev' 
in the message of the email.

CFCDev is run by CFCZone (www.cfczone.org) and supported
by Mindtool, Corporation (www.mindtool.com).

An archive of the CFCDev list is available at www.mail-archive.com/[EMAIL PROTECTED]

Reply via email to