← Prev in month ← Prev in thread

XSD validation

From
Prasad G S K <>
To
xml-dev <>
Date
2003-04-10T10:24:45Z
ID
<342F6DED4DF4D511AA5A00B0D079FEE30233CD5A@MAYA>
Thread
XSD validation
How do I validate the xsd file itself?

This is one of the sample xsd file given in xerces-J:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema'>

 <xs:element name="personnel">
  <xs:complexType>
   <xs:sequence>
     <xs:element ref="person" minOccurs='1' maxOccurs='unbounded'/>
   </xs:sequence>
  </xs:complexType>
....
.....
....
</xs:schema>

How do I validate this file??

regards,
GSK
← Prev in month ← Prev in thread