views:

43

answers:

1

I am trying to execute a program developed elsewhere, and I see the following exception:

org.jdom.RuntimeException: http://apache.org/xml/features/validation/schema 
feature not recognized for SAX driver org.apache.cimson.parser.XMLReaderImpl

This program ran successfully a few months ago, but my development platform was rebuilt (apparently into a different configuration). Any ideas why this program is now throwing the above exception?

+1  A: 

This is an Xerces feature (as listed here). Thus, you need to download and put Xerces in the classpath.

BalusC
I tried that to no avail. Any ideas why adding xerces might not help?
Upper Stage
Likely been put at the wrong place in classpath. It must at least be *that* place from where the SAX driver is been loaded for the first time.
BalusC
Many thanks, BalusC.
Upper Stage
You're welcome.
BalusC