Alex Neth wrote:
> 
> I don't use the DOMParser class.  What is the purpose of this class?
> I use the following method to parse the document:
> 
>    DocumentBuilderFactory docFactory =
> DocumentBuilderFactory.newInstance();

As someone else mentioned (Ian Roberts) on this thread, JAXP is an XML
processor independent API.  It is implemented as a wrapper around the
Xerces DOMParser class.  I recently checked in code to the Xerces JAXP
implementation to make it conform to the JAXP 1.1 spec recently so it
may not have made it into an official package.  So you may be using
older code and may want to try using the latest code from the CVS
repository.

-Edwin

Reply via email to