-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEchoInterface.wsdl
50 lines (43 loc) · 1.93 KB
/
EchoInterface.wsdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:plink="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"
xmlns:tns="http://dsg.wiai.uniba.de/wsdl/echointerface"
name="EchoInterface"
targetNamespace="http://dsg.wiai.uniba.de/wsdl/echointerface">
<plink:partnerLinkType name="EchoInterfacePartnerLinkType">
<plink:role name="echoInterfaceRole" portType="tns:EchoInterfacePortType"/>
</plink:partnerLinkType>
<types>
<xsd:schema targetNamespace="http://dsg.wiai.uniba.de/wsdl/echointerface">
<xsd:element name="echoRequest" type="xsd:int"/>
<xsd:element name="echoResponse" type="xsd:int"/>
</xsd:schema>
</types>
<message name="echoRequestMessage">
<part name="inputPart" element="tns:echoRequest"/>
</message>
<message name="echoResponseMessage">
<part name="outputPart" element="tns:echoResponse"/>
</message>
<portType name="EchoInterfacePortType">
<operation name="echo">
<input name="echoInput" message="tns:echoRequestMessage"/>
<output name="echoOutput" message="tns:echoResponseMessage"/>
</operation>
</portType>
<binding name="EchoInterfacePortTypeBinding" type="tns:EchoInterfacePortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="echo">
<soap:operation/>
<input name="echoInput">
<soap:body use="literal"/>
</input>
<output name="echoOutput">
<soap:body use="literal"/>
</output>
</operation>
</binding>
</definitions>