WSDL2.0 <service>
元素是WSDL 2.0 文件的頂級元素。<service>
用於定義具有一個或多個端點的服務,該端點具有給定介面的<endpoint>
子元素。 使用給定系結和通訊地址定義端點。<service>
元素的語法如下所示:
<wsdl:service name="nmtoken1" interface="qname1">
<wsdl:endpoint name="nmtoken2" binding="qname2"
address="uri"/>
...
</wsdl:service>
關於<service>
元素的說明:
name="nmtoken1"
- 提供此服務的參照名稱。name="nmtoken2"
- 為此端點提供參照名稱。interface="qname1"
- 通過參照<interface>
元素指定介面。binding="qname2"
- 通過參照<binding>
元素指定系結。以下是<service>
元素的範例:
<wsdl:service name="helloService" interface="hy:helloInterface">
<wsdl:endpoint name="helloEndpoint" binding="hy:helloBinding"
address="https://www.tw511.com/Service/hello_soap.php"/>
</wsdl:service>
在上面範例程式碼中,
helloService
由一個端點helloEndpoint
定義,helloEndpoint
使用系結的URL地址helloBinding
定義。