2023-01-11 21:46:36 +01:00
|
|
|
<definitions name="HelloService"
|
|
|
|
targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
|
|
|
|
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
|
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
|
|
|
xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl"
|
|
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
2023-01-12 12:52:44 +01:00
|
|
|
<message name="PingRequest"/>
|
|
|
|
<message name="PongResponse">
|
2023-01-11 21:46:36 +01:00
|
|
|
<part name="greeting" type="xsd:string"/>
|
|
|
|
</message>
|
|
|
|
<portType name="Hello_PortType">
|
2023-01-12 12:52:44 +01:00
|
|
|
<operation name="Ping">
|
|
|
|
<input message="tns:PingRequest"/>
|
|
|
|
<output message="tns:PongResponse"/>
|
2023-01-11 21:46:36 +01:00
|
|
|
</operation>
|
|
|
|
</portType>
|
|
|
|
<binding name="Hello_Binding" type="tns:Hello_PortType">
|
|
|
|
<soap:binding style = "rpc"
|
|
|
|
transport="http://schemas.xmlsoap.org/soap/http"/>
|
2023-01-12 12:52:44 +01:00
|
|
|
<operation name="Ping">
|
|
|
|
<soap:operation soapAction="Ping"/>
|
2023-01-11 21:46:36 +01:00
|
|
|
<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>
|
|
|
|
<service name="Hello_Service">
|
|
|
|
<documentation>WSDL File for HelloService</documentation>
|
|
|
|
<port binding="tns:Hello_Binding" name="Hello_Port">
|
|
|
|
<soap:address
|
2023-01-12 12:52:44 +01:00
|
|
|
location="http://hephaistos:8080/api/ping" />
|
2023-01-11 21:46:36 +01:00
|
|
|
</port>
|
|
|
|
</service>
|
|
|
|
</definitions>
|