|
HV can't read validation.xml on IBM JDK, causing a failure during creation of a ValidatorFactory - the failure:
It looks like this is because XmlParserHelper (line 109) calls reset() on a xmlInputStream which was used for creating a XMLEventReader earlier - and for some reason, IBM JDK behaves in a way that it closes the inputStream when creating a XMLEventReader out of it. So calling reset() ends with a IOException.
How to reproduce - have any validation.xml on the classpath and run this code on IBM JDK:
|