Hi all,
we are expecting very strange issue on our production environment (Oracle 10g).
In OJVM is loaded application that creates XML document builder using xerces library as follows (the class is intended for loading configuration XML file):
public ClientConfigurationImplXML(String clientConfigFilename) throws Exception{
super();
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); // here exception occurs
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(new InputSource(new FileReader(clientConfigFilename)));
config = new ConfigurationFromXML(doc.getDocumentElement());
}
Time to time (really not allways, that's why I'm really confused) this code causes exception:
javax.xml.parsers.FactoryConfigurationError: Provider not found
at javax.xml.parsers.DocumentBuilderFactory.newInstance(Unknown Source).
When I check
dba_java_classes I can see that 'org.apache.xerces.jaxp.DocumentBuilderFactoryImpl' is there. All objects in appropriate schema are VALID.
Did someone ever met with this behavior?
Thanks a lot
Tonda
Message was edited by:
Tonda