Hi,
I need to validate a XML against a set of XSDs.
I'm aware that, when there is a single XSD to compare, it is possible to compare using xmlDoc.schemaValidate() with xmlDoc and xmlSchema .
But in my case there are more than one XSDs against which i need to compare the XML.
My main XSD has the statement as mentioned below.
<xs:import namespace="http://www.w3.org/1999/xxxx" schemaLocation="xxxx.xsd"/>
<xs:import namespace="http://www.w3.org/1999/02/yyyy" schemaLocation="yyyy.xsd"/>
I'm not sure how to handle this situation.
Please, help me out !!
Thanks
Vicky