forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBankCustomerService.wsdl
67 lines (57 loc) · 2.34 KB
/
BankCustomerService.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="LoggerService"
targetNamespace="http://soap.spring.example.bpm.camunda.com/v1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:e="http://soap.spring.example.bpm.camunda.com/v1"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:types>
<xsd:schema>
<xsd:import namespace="http://soap.spring.example.bpm.camunda.com/v1" elementFormDefault="qualified"
schemaLocation="BankCustomerService.xsd" />
</xsd:schema>
</wsdl:types>
<!-- Messages -->
<wsdl:message name="getAccountsRequest">
<wsdl:part name="parameters" element="e:getAccountsRequest" />
</wsdl:message>
<wsdl:message name="getAccountsResponse">
<wsdl:part name="parameters" element="e:getAccountsResponse" />
</wsdl:message>
<wsdl:message name="bankException">
<wsdl:part name="fault" element="e:bankException" />
</wsdl:message>
<wsdl:message name="bankHeader">
<wsdl:part element="e:bankRequestHeader" name="bankHeader"/>
</wsdl:message>
<!-- Port types -->
<wsdl:portType name="BankCustomerServicePortType">
<wsdl:operation name="getAccounts">
<wsdl:input message="e:getAccountsRequest" />
<wsdl:output message="e:getAccountsResponse" />
<wsdl:fault name="bankException" message="e:bankException"/>
</wsdl:operation>
</wsdl:portType>
<!-- Bindings -->
<wsdl:binding name="BankCustomerServiceBinding" type="e:BankCustomerServicePortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="getAccounts">
<soap:operation soapAction="" style="document" />
<wsdl:input>
<soap:header message="e:bankHeader" part="bankHeader" use="literal"/>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
<wsdl:fault name="bankException">
<soap:fault name="bankException" use="literal"/>
</wsdl:fault>
</wsdl:operation>
</wsdl:binding>
<!-- Services -->
<wsdl:service name="BankCustomerService">
<wsdl:port name="BankCustomerServicePort" binding="e:BankCustomerServiceBinding">
<soap:address location="http://localhost:50000/services/bankCustomer" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>