在下面的架构中,行<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>
答案 0 :(得分:2)
这是因为您实际上将AddressType声明为元素,而不是类型。如果要将其用作主模式中的元素,请使用:
<xs:element ref="cmn:AddressType" minOccurs="1" maxOccurs="1" />
如果您希望它是一个类型,那么请删除地址模式中的元素声明,然后放入<xs:complexType name="AddressType">
。