This post demonstrates how to validate XML against XSD that imports other XSDs. This is different from validating against multiple independent XSDs.
Xerces C++: Validate Slow XML Validation Against XSD With Unique And Key Elements
We have encountered a performance issue with Java validating an XML with 300,00 elements against an XSD with <xs:unique> and <xs:key>. This post uses Xerces C++ to parse and validate a huge XML against an XSD with those elements. Also,
How To Validate XML String against XSD Without Writing To A File
This post shows how to validate XML string data against XSD files in Java. Most of the time, we work directly with XML files instead of string format. We point to an XML file and validate it against XSDs. However,
Kotlin – Validate XML Against Multiple XSDs
This post is about XML validation against more than one related XSDs – one XSD is included into the main XSD.