为什么我可以从xsd架构导入此类型?

时间:2010-03-11 15:14:34

标签: xml visual-studio-2008 xsd

在下面的架构中,行<xs:element type="cmn:AddressType" name="ResidentialAddress" minOccurs="1" maxOccurs="1" />会出现错误Type 'http://company.com/Common:AddressType' is not declared

有谁知道为什么?它显示在Visual Studio 2008编辑器中,如果我尝试使用XDocument验证XML文件。

Schema Student.xsd:

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="Student"
    xmlns:cmn="http://company.com/Common"
    targetNamespace="http://company.com/Student"
    elementFormDefault="qualified"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>

  <xs:import id="cmn" schemaLocation="Address.xsd" 
             namespace="http://company.com/Common" />

  <xs:element name="Student" nillable="false">
    <xs:complexType>
      <xs:sequence minOccurs="1">
        <xs:element name="Id" type="xs:integer" nillable="false" minOccurs="1" maxOccurs="1"  />
        <xs:element type="cmn:AddressType" name="ResidentialAddress" minOccurs="1" maxOccurs="1" />
      </xs:sequence>
    </xs:complexType>

  </xs:element>
</xs:schema>

Schema Address.xsd:

<xs:schema 
    targetNamespace="http://company.com/Common"
    elementFormDefault="qualified"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
  <xs:element name="AddressType">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="Line1" minOccurs="1" maxOccurs="1" />
        <xs:element name="Line2" minOccurs="0" maxOccurs="1" />
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

1 个答案:

答案 0 :(得分:2)

这是因为您实际上将AddressType声明为元素,而不是类型。如果要将其用作主模式中的元素,请使用:

<xs:element ref="cmn:AddressType" minOccurs="1" maxOccurs="1" />

如果您希望它是一个类型,那么请删除地址模式中的元素声明,然后放入<xs:complexType name="AddressType">