我包括下面的xsd文件:web服務代理類代
<?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文件到Visual Studio的Web引用,它不會產生reference.cs文件HotelDetailRQ代理類。所以我無法使用生成的HotelDetailRQ類。
我沒有使用xsd文件或wsdl文件的經驗。你能指出我在哪裏可能會犯錯嗎?
添加作爲服務參考沒有區別。我可能會錯過(很多)這裏的東西,所以如果你看到缺少的東西,請讓我知道,我嘗試添加它。 – kaivalya 2010-03-24 11:18:36