org.apache.xerces.jaxp.SAXParserFactoryImpl not found when importing Gears API in GWT

Check that Xerces exists in:

$JAVA_HOME/lib/endorsed

Sounds like a Java 5 issue. Also check the Java system property for:

javax.xml.parsers.SAXParserFactory

It should be:

org.apache.xerces.jaxp.SAXParserFactoryImpl

If not then that’s your issue, make sure you set the system property.

Leave a Comment