| Author |
XSD Validation using DOMSource isn't working in Java6
|
Damon James
Greenhorn
Joined: Mar 11, 2011
Posts: 1
|
|
I've written an application that checks if an XSD file is valid.
In Java 5 everything is ok but in Java 6 there seems to be a problem.
It seems that if SchemaFactory.newInstance.newSchema is provided with DOMSource, then the validation is valid, even if the DOM is invalid.
To be more specific the first time the DOM is validated, if the DOM is invalid, it notifies that it is invalid,
but the rest of the times the validation seems to think that the DOM is valid.
If newSchema is provided with File then there's no problem.
Any help would be appreciated
Thank you
Sample XSD (invalid)
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3793
|
|
|
Hi Damon. Welcome to The Ranch! Your post would be much easier to read if you UseCodeTags, so I've added them for you.
|
 |
g tsuji
Ranch Hand
Joined: Jan 18, 2011
Posts: 362
|
|
|
On this matter, it is important to know which dom parser (builder/factory) the application is actually in use. Different implementation entails slightly different setup to make it work and/or simply unsupporting re-validation of loaded dom tree. Could you check that first and post the finding? You may use getClass().getName() to discover what implementation is actually in use.
|
 |
 |
|
|
subject: XSD Validation using DOMSource isn't working in Java6
|
|
|