Fragster

Untitled

Apr 14th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. <xs:schema xmlns:tns="test" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="test" attributeFormDefault="unqualified" elementFormDefault="qualified">
  2.    <xs:element name="root" type="tns:seq"/>
  3.    <xs:complexType name="elem1"/>
  4.    <xs:complexType name="elem2"/>
  5.    <xs:complexType name="seq">
  6. <!-- тут нет xs:sequence, см. первое сообщение -->
  7.        <xs:choice>
  8.            <xs:element name="elem1" type="tns:elem1" minOccurs="0" maxOccurs="unbounded"/>
  9.            <xs:element name="elem2" type="tns:elem2" minOccurs="0" maxOccurs="unbounded"/>
  10.        </xs:choice>
  11.    </xs:complexType>
  12. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment