I keep getting the following exception on one of our live servers (others that work with the same code look fine):
java.lang.RuntimeException: XPathFactory
at javax.xml.xpath.XPathFactory.newInstance(XPathFactory.java:67)
I am sure that I have Xalan and Saxon jars in the classpath (using IBM Java 1.5).
Do you have any ideas what else might be wrong?
Edit:
What causes the code causing the problem:
XPathFactory factory = XPathFactory.newInstance();
And it runs on a custom web server, which is roughly based on the Catalina engine.
source
share