WSDL <service>元素
WSDL <service>
元素定義Web服務支持的端口。 對於每個支持的協議,都有一個<port>
元素。 service
元素是端口的集合。
- Web服務客戶端可以從服務元素中學習以下內容 -
- 在哪裏訪問該服務?
- 通過哪個端口訪問Web服務?
- 如何定義通信消息?
-
service
元素包含一個文檔元素,用於提供人類可讀的文檔。
下面是示例章節中的一段代碼 -
<service name = "Hello_Service">
<documentation>WSDL File for HelloService</documentation>
<port binding = "tns:Hello_Binding" name = "Hello_Port">
<soap:address
location = "http://www.examples.com/SayHello/">
</port>
</service>
port
元素的綁定屬性將服務的地址與Web服務中定義的綁定元素相關聯。 在這個例子中,它綁定的是Hello_Binding
。
<binding name =" Hello_Binding" type = "tns:Hello_PortType">
<soap:binding style = "rpc"
transport = "http://schemas.xmlsoap.org/soap/http"/>
<operation name = "sayHello">
<soap:operation soapAction = "sayHello"/>
<input>
<soap:body
encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"
namespace = "urn:examples:helloservice" use = "encoded"/>
</input>
<output>
<soap:body
encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"
namespace = "urn:examples:helloservice" use = "encoded"/>
</output>
</operation>
</binding>