I\'ve got what seems like a very simple example of an xsd and xml file where the xml file does not validate.
Copies of the two files are below.
The first xml ele
An XML document cannot be valid until it is well-formed.
So you should specify a root tag in XML document, e.g.:
<root> <question id="fixMe" /> <question idx="ok"/> <question /> </root>