Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-dev] Help, loading new versions of Xerces & Xalan in a plugin

I am developing a pluig-in that needs the latest version of Xerces and Xalan.
I set the system properties below, but the plugin environment has problems
loading the SAXParserFactoryImpl class, seems to be a class loader issue.

Has anyone seen this problem before ??

Thanks
John G

     System.setProperty(
         "javax.xml.parsers.DocumentBuilderFactory",
         "org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");

     System.setProperty(
         "javax.xml.parsers.SAXParserFactory",
         "org.apache.xerces.jaxp.SAXParserFactoryImpl");

     System.setProperty(
         "javax.xml.transform.TransformerFactory",
         "org.apache.xalan.processor.TransformerFactoryImpl");






Back to the top