1. 程式人生 > >生成WSDL檔案的三種方法

生成WSDL檔案的三種方法

在.NET中有三種方式生成WSDL:

1.在Web Service的URL後面加上WDSL需求,如下:

http://localhost/webExamples/simpleService.asmx?WSDL

2.使用disco.exe。在命令列中寫下如下的命令:

disco http://localhost/webExamples/simpleService.asmx

3.使用System.Web.Services.Description名稱空間下提供的類

每個 WSDL 檔案的根元素都是 <definitions>,必須在其中提供服務的完整描述。首先,必須在 <definitions> 元素中提供各種名稱空間的宣告。

<definitions> 元素包含一個或多個 < portType > 元素,每個元素都是一系列 operation。可以將單個portType元素看作是將各種方法組成類的一個邏輯分組。應該將每個Types稱為服務,因此整個 WSDL 檔案將成為一個服務集合。

在每個服務內可以有幾個方法或者 operation,WSDL 通過 <operation> 元素來引用它們。

下面是一個最簡單的WSDL例子

<?xml version="1.0" encoding="UTF-8" ?>
<definitions name="MobilePhoneService"
targetNamespace="www.mobilephoneservice.com/MobilePhoneService-interface"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.mobilephoneservice.com/MobilePhoneService"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">

<portType name="MobilePhoneService_port">
<operation name="getListOfModels ">
.......
.......
</operation>

<operation name="getPrice">
.......
.......
</operation>
</portType>
</definitions>