You'll have to make sure to use the correct XML Parser.

Try specifying your SAX Parser using the following if you're using JDK 5.0:

System.setProperty( "org.xml.sax.driver",
"com.sun.org.apache.xerces.internal.parsers.SAXParser");

Otherwise, if you're not using JDK 5.0, try to download Xerces, add it
to your classpath and use the following:

System.setProperty( "org.xml.sax.driver",
"org.apache.xerces.parsers.SAXParser");

Regards,
Edwin
--
http://www.edankert.com/

Reply via email to