导入ComplexType时,Xsd.exe无法生成类

时间:2015-11-01 07:17:28

标签: xml xsd schema xsd-validation xsd.exe

我正在尝试在XSD文件上运行Xsd.exe,但是我收到了以下错误。我使用的是IMPORT,因为host-namespace与foreign-namespace不同。

A2.xsd取决于A21.xsd,而A21.xsd依赖于A22.xsd(所有都在同一个文件夹中)

ERROR: "The datatype 'http://service.a1.com/base1/2005/:EmployeeDefinition' is missing"

xsd.exe /classes /out:C:\Temp\ "C:\Temp\A2.xsd" /language:CS

A2.xsd

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://service.a1.com/base/2005/" xmlns:c1="http://service.a1.com/base1/2005/" elementFormDefault="qualified">
  <xs:import namespace="http://service.a1.com/base1/2005/" schemaLocation="a21.xsd"/> 
  <xs:element name="Employee" nillable="true" type="c1:EmployeeDefinition" />
</xs:schema>

A21,XSD

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://service.a1.com/base1/2005/" xmlns:n2="http://service.a1.com/base2/2005/" elementFormDefault="qualified">
 <xs:import namespace="http://service.a1.com/base2/2005/" schemaLocation="a22.xsd"/> 
 <xs:complexType  name="EmployeeDefinition">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="EmployeeID" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="FirstName" type="xs:string" />
      <xs:element name="Address" nillable="true" type="n2:AddressDefinition" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>

A22.xsd

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://service.a1.com/base2/2005/" elementFormDefault="qualified">
  <xs:complexType name="AddressDefinition">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="HouseNumber" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="StreetName" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>

请让我知道这里发生了什么。

2 个答案:

答案 0 :(得分:2)

您必须告诉xsd.exe引用的所有架构

xsd.exe /c "C:\Temp\A2.xsd" "C:\Temp\A21.xsd" "C:\Temp\A22.xsd"

答案 1 :(得分:0)

如果你有很多 xsd,你应该使用一个配置文件。 例如 GenerateClassFromXSD.xml :

<xsd xmlns='http://microsoft.com/dotnet/tools/xsd/'>
<generateClasses language='CS' namespace='Namespace.subnamespace'>
    <schema>A2.xsd</schema>
    <schema>A21.xsd</schema>
    <schema>.\A22.xsd</schema>
</generateClasses>
</xsd>

xsd /p:GenerateClassFromXSD.xml

在此处查看最终提示: Tool that can combine many XSD files into one?