I've started such thread [1] in the comp.text.xml group where I've mentioned my experience with Xerces2. Basically, seems like Xerces permits the following:

 <!-- top-level declaration -->
 <xs:element name="csv">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="row" maxOccurs="unbounded">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="col" type="xs:token" />
             <xs:element name="col" type="xs:date" />
             <xs:element name="col" type="xs:integer" />
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:element>

where the current spec doesn't. Is it intentional or incidental behavior?

--
Stanimir


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to