Tech Rams wrote:
JDK 1.5 has xerces built-in, though under a different
package name (com.sun.org.apache.xerces.internal).
Look at
http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/parsers/SAXParserFactory.html#newInstance()
to know how factory implementation is found. The
default implementation is the one that comes with JDK
1.5, that is xerces.
Please don't. SAXParserFactory is a disaster waiting to happen, If you
use it, you'll only find yourself back here in a week pleading for help
with undiagnosable bugs. It was designed for SAX1. In 2005 nobody should
be using SAX1, SAXParser, or SAXParserFactory. Use XMLReader and
XMLReaderFactory instead.
--
Elliotte Rusty Harold
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]