forked from kelapure/dynacache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataProxy.wsdl
81 lines (51 loc) · 2.32 KB
/
DataProxy.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://ejbs" xmlns:impl="http://ejbs" xmlns:intf="http://ejbs" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:types>
<schema targetNamespace="http://ejbs" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:impl="http://ejbs" xmlns:intf="http://ejbs" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<element name="getDataResponse">
<complexType>
<sequence>
<element name="getDataReturn" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
<element name="getData">
<complexType>
<sequence>
<element name="id" nillable="true" type="xsd:string"/>
<element name="info" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="getDataRequest">
<wsdl:part element="impl:getData" name="parameters"/>
</wsdl:message>
<wsdl:message name="getDataResponse">
<wsdl:part element="impl:getDataResponse" name="parameters"/>
</wsdl:message>
<wsdl:portType name="DataProxy">
<wsdl:operation name="getData">
<wsdl:input message="impl:getDataRequest" name="getDataRequest"/>
<wsdl:output message="impl:getDataResponse" name="getDataResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="DataProxySoapBinding" type="impl:DataProxy">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="getData">
<wsdlsoap:operation soapAction="urn:dataproxy-getdata"/>
<wsdl:input name="getDataRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="getDataResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="DataProxyService">
<wsdl:port binding="impl:DataProxySoapBinding" name="DataProxy">
<wsdlsoap:address location="http://localhost:9081/WebServiceCachingWeb/services/DataProxy"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>