Web服务代理类生成

时间:2010-03-24 11:08:33

标签: c# .net xml web-services xsd

我包含以下xsd文件:

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.xxxx.com/schemas/2005/06/messages" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.xxxx.com/schemas/2005/06/messages" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:include schemaLocation="xxxxCommonTypes.xsd" />
  <xs:element name="HotelDetailRQ">
    <xs:annotation>
      <xs:documentation>Request data to obtain detailed information for the specified hotel product.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:complexContent mixed="false">
        <xs:extension base="CoreRequest">
          <xs:sequence>
            <xs:element name="HotelCode">
              <xs:annotation>
                <xs:documentation>Hotel code to obtain detailed inormation.</xs:documentation>
              </xs:annotation>
              <xs:simpleType>
                <xs:restriction base="xs:string">
                  <xs:minLength value="1" />
                  <xs:maxLength value="10" />
                </xs:restriction>
              </xs:simpleType>
            </xs:element>
          </xs:sequence>
        </xs:extension>
      </xs:complexContent>
    </xs:complexType>
  </xs:element>
</xs:schema>

通过;

到wsdl文件
<wsdl:definitions xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:tns1="http://axis.frontend.hydra.xxxx.com" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:impl="http://www.xxxx.com/wsdl/2005/06" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:intf="http://www.xxxx.com/wsdl/2005/06" targetNamespace="http://www.xxxx.com/wsdl/2005/06" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
          <wsdl:types>    
        <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://axis.frontend.hydra.xxxx.com">
                  <xsd:import schemaLocation="C:\Users\xxxx\HotelDetailRQ.xsd" namespace="http://www.xxxx.com/schemas/2005/06/messages" />
            </xsd:schema>
        </wsdl:types>
    .
    .
    .
</wsdl:definitions>

问题是当我将wsdl文件作为Web引用添加到visual studio时,它不会在reference.cs文件中生成HotelDetailRQ代理类。所以我无法使用生成的HotelDetailRQ类。

我没有使用xsd文件或wsdl文件的经验。你能指点我在这里犯错的地方吗?

1 个答案:

答案 0 :(得分:0)

您的架构文件包含另一个架构文件:

<xs:include schemaLocation="xxxxCommonTypes.xsd" />

您是否更新了该文件的路径?

任何错误消息也会有所帮助。