<br>Hello all,<br>I would like to so some schema validation and started with the instructions in :<br><a href="http://codespeak.net/lxml/dev/validation.html#xmlschema">http://codespeak.net/lxml/dev/validation.html#xmlschema</a><br>
<br><br>This all works great. Now I would like to extend this to a XSD file that includes many other files. In other words I have a directory of XSD files that I would like to use. The include statement look like this (the included file is referenced by its name):<br>
<br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;xsd:schema xmlns:xsd=&quot;<a href="http://www.w3.org/2001/XMLSchema">http://www.w3.org/2001/XMLSchema</a>&quot; elementFormDefault=&quot;qualified&quot;&gt;<br>&nbsp;&nbsp;&nbsp; &lt;xsd:include schemaLocation=&quot;base.xsd&quot;/&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;xsd:element name=&quot;Price&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ... some types defined in &quot;base.xsd&quot; are used here<br><br><br><br>I am new to lxml so sorry in advance if the question does not make sense.<br>
<br>Regards,<br>Arye.<br><br><br><br>