WSDL- <service>要素
ザ・ <service>elementは、Webサービスでサポートされるポートを定義します。サポートされているプロトコルごとに、1つのポート要素があります。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>
ポート要素のバインディング属性は、サービスのアドレスを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>