如何使用XMLSchema:sequence生成xs样本表单xsd

时间:2015-05-14 11:02:29

标签: xml xsd

如何使用包含XMLSchema:sequence?

从xsp创建xml示例

我尝试了http://www.xsd2xml.com/,但它返回错误

Error!!!
The 'http://www.w3.org/2001/XMLSchema:sequence' element is not supported in this context.

而不是样品。

原始xsd在单独的文件中有类型,我将这些类型复制到此xsd的末尾,因为这会导致异常。

1 个答案:

答案 0 :(得分:0)

您的XSD在最后一个xs:sequence之前的底部附近缺少以下行:

<xs:complexType name="Property">

添加该行将完成最后一个声明,

<xs:complexType name="Property">
  <xs:sequence>
    <xs:element name="key" type="xs:string" minOccurs="0"/>
    <xs:element name="stringVal" type="xs:string" minOccurs="0"/>
    <xs:element name="dateVal" type="xs:date" minOccurs="0"/>
    <xs:element name="booleanVal" type="xs:boolean" minOccurs="0"/>
    <xs:element name="integerVal" minOccurs="0">
      <xs:simpleType>
        <xs:restriction base="xs:integer"/>
      </xs:simpleType>
    </xs:element>
    <xs:element name="decimalVal" minOccurs="0">
      <xs:simpleType>
        <xs:restriction base="xs:decimal">
          <xs:totalDigits value="15"/>
          <xs:fractionDigits value="2"/>
        </xs:restriction>
      </xs:simpleType>
    </xs:element>
  </xs:sequence>
</xs:complexType>

并使您的XSD有效。