1

我有 2 个嵌套的 xsd:

DefaultSchema.xsd:

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DefaultSchema"
    targetNamespace="http://myNamespace.com/DefaultSchema.xsd"
    elementFormDefault="qualified"
    xmlns="http://myNamespace.com/DefaultSchema.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
  <xs:complexType name="ZForm">
    <xs:sequence minOccurs="0" maxOccurs="unbounded">
      <xs:element name="Part" minOccurs="0" maxOccurs="unbounded" type="Part"/>
    </xs:sequence>
    <xs:attribute name="Title" use="required" type="xs:string"/>
    <xs:attribute name="Version" type="xs:int"/>
  </xs:complexType>

  <xs:complexType name="Part">
    <xs:sequence minOccurs="0" maxOccurs="unbounded">
      <xs:element name="Label" type="Label" minOccurs="0"></xs:element>
    </xs:sequence>
    <xs:attribute name="Title" use="required" type="xs:string"/>
  </xs:complexType>
  <xs:complexType name="Label">
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attribute name="Title" type="xs:string"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
</xs:schema>

ExportSchema.xsd:(这有点在 DefaultSchema 的主要元素(ZForm)周围再包裹了 1 个元素(ZForms))

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="ExportSchema"
    targetNamespace="http://myNamespace.com/ExportSchema.xsd"
    elementFormDefault="qualified"
    xmlns="http://myNamespace.com/DefaultSchema.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:es="http://myNamespace.com/ExportSchema.xsd"
>
  <xs:import namespace="http://myNamespace.com/DefaultSchema.xsd" schemaLocation="DefaultSchema.xsd"/>

  <xs:element name="ZForms" type="es:ZFormType"></xs:element>

  <xs:complexType name="ZFormType">
    <xs:sequence>
      <xs:element name="ZForm" type="ZForm" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>

最后我有一个生成的 xml

<?xml version="1.0" encoding="utf-8"?>
<ZForms xmlns="http://myNamespace.com/ExportSchema.xsd">
  <ZForm Version="1" Title="FormTitle">
    <Part Title="PartTitle" >
      <Label Title="LabelTitle" />
    </Part>
  </ZForm>
</ZForms>

Visual Studio 抱怨它不知道“部分”是什么。
我希望我不需要使用 xml 命名空间前缀 (..) 来验证这个 xml,因为 ExportSchema.xsd 引用了 DefaultSCHema.xsd。

有没有办法在不明确指定 DefaultSchema.xsd 的情况下使该 xml 结构有效?或者这是不行的?

4

2 回答 2

1

如果您更改importinclude基本架构,则可以使其正常工作(没有命名空间前缀):

导出架构.xsd

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="ExportSchema"
    targetNamespace="http://myNamespace.com/DefaultSchema.xsd"
    elementFormDefault="qualified"
    xmlns="http://myNamespace.com/DefaultSchema.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
    <xs:include schemaLocation="DefaultSchema.xsd" />

    <xs:element name="ZForms" type="ZFormType"></xs:element>

    <xs:complexType name="ZFormType">
        <xs:sequence>
            <xs:element name="ZForm" type="ZForm" maxOccurs="unbounded" />
        </xs:sequence>
    </xs:complexType>
</xs:schema>

注意:这还需要将目标命名空间更改为 DefaultSchema.xsd。

来自 xsd:import 上的 MSDN

include元素和import元素 的区别在于import 元素允许从具有不同目标命名空间的模式文档中引用模式组件,而 include 元素从具有相同目标命名空间(或没有指定目标命名空间)的其他模式文档中添加模式组件) 到包含架构。简而言之,import 元素允许您使用来自任何模式的模式组件;include 元素允许您将包含模式的所有组件添加到包含模式。

DefaultSchema.xsd(您的版本没有变化)

测试.xml

<?xml version="1.0" encoding="utf-8"?>
<ZForms 
    xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
    xs:schemaLocation="http://myNamespace.com/DefaultSchema.xsd ExportSchema.xsd" 
    xmlns="http://myNamespace.com/DefaultSchema.xsd">
  <ZForm Version="1" Title="FormTitle">    
    <Part Title="PartTitle" >      
      <Label Title="LabelTitle" />      
    </Part>
  </ZForm>
</ZForms>

这种组合似乎有效..

于 2012-06-29T09:11:31.803 回答
0

您的架构文档 DefaultSchema 具有 targetNamespace="http://myNamespace.com/DefaultSchema.xsd" 因此它表示 ZForm、Part 和 Label 元素必须在此命名空间中。但在您的实例中,这些元素不在此命名空间中。因此,您的实例对此模式无效。

于 2012-06-29T11:37:09.230 回答