I\'m writing an XML schema (an XSD) to describe the format our partners should send us data in.
And I\'m having a hard time finding a tool that can validate the XSD sche
the Java SDK comes with a standard tool called xjc . This tool generates the classes parsing your schema. You could use this code to validate your partners' input.
See also : http://www.java2s.com/Tutorial/Java/0440__XML/ThexjcTool.htm