~ubuntu-branches/ubuntu/saucy/php-soap/saucy

« back to all changes in this revision

Viewing changes to SOAP-0.13.0/tests/example.wsdl

  • Committer: Package Import Robot
  • Author(s): Prach Pongpanich
  • Date: 2013-05-08 15:21:07 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130508152107-x6a6delp9dy112zi
Tags: 0.13.0-1
* New upstream release
* Now using PKG-PHP-PEAR team as maintainer
* Add myself as uploader
* Add debian/gbp.conf file
* Add Vcs-* fields
* Switch to pkg-php-tools and rewrite debian/rules
* Drop debian/docs, upstream don't ship AUTHORS file
* Update copyright file to version 1.0 format
* Update description in debian/control
* Bump compat level to 9
* Bump Standards-Version 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<definitions name="ServerExample" targetNamespace="urn:ServerExample" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:ServerExample" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:ns5="http://soapinterop.org/xsd">
 
3
<types xmlns="http://schemas.xmlsoap.org/wsdl/">
 
4
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapinterop.org/xsd">
 
5
<complexType name="SOAPStruct">
 
6
<all>
 
7
<element name="varString" type="xsd:string"/>
 
8
<element name="varInt" type="xsd:int"/>
 
9
<element name="varFloat" type="xsd:float"/>
 
10
</all>
 
11
</complexType>
 
12
</schema>
 
13
</types>
 
14
<message name="echoStructAsSimpleTypesRequest">
 
15
<part name="inputStruct" type="ns5:SOAPStruct"/>
 
16
</message>
 
17
<message name="echoStructAsSimpleTypesResponse">
 
18
<part name="outputString" type="xsd:string"/>
 
19
<part name="outputInteger" type="xsd:int"/>
 
20
<part name="outputFloat" type="xsd:float"/>
 
21
</message>
 
22
<message name="echoStringSimpleRequest">
 
23
<part name="inputStringSimple" type="xsd:string"/>
 
24
</message>
 
25
<message name="echoStringSimpleResponse">
 
26
<part name="outputStringSimple" type="xsd:string"/>
 
27
</message>
 
28
<message name="echoStringRequest">
 
29
<part name="inputString" type="xsd:string"/>
 
30
</message>
 
31
<message name="echoStringResponse">
 
32
<part name="outputString" type="xsd:string"/>
 
33
</message>
 
34
<message name="divideRequest">
 
35
<part name="dividend" type="xsd:int"/>
 
36
<part name="divisor" type="xsd:int"/>
 
37
</message>
 
38
<message name="divideResponse">
 
39
<part name="outputFloat" type="xsd:float"/>
 
40
</message>
 
41
<message name="echoStructRequest">
 
42
<part name="inputStruct" type="ns5:SOAPStruct"/>
 
43
</message>
 
44
<message name="echoStructResponse">
 
45
<part name="outputStruct" type="ns5:SOAPStruct"/>
 
46
</message>
 
47
<message name="echoMimeAttachmentRequest">
 
48
<part name="stuff" type="xsd:string"/>
 
49
</message>
 
50
<message name="echoMimeAttachmentResponse">
 
51
<part name="outputMime" type="xsd:string"/>
 
52
</message>
 
53
<portType name="ServerExamplePort">
 
54
<operation name="echoStructAsSimpleTypes">
 
55
<input message="tns:echoStructAsSimpleTypesRequest"/>
 
56
<output message="tns:echoStructAsSimpleTypesResponse"/>
 
57
</operation>
 
58
<operation name="echoStringSimple">
 
59
<input message="tns:echoStringSimpleRequest"/>
 
60
<output message="tns:echoStringSimpleResponse"/>
 
61
</operation>
 
62
<operation name="echoString">
 
63
<input message="tns:echoStringRequest"/>
 
64
<output message="tns:echoStringResponse"/>
 
65
</operation>
 
66
<operation name="divide">
 
67
<input message="tns:divideRequest"/>
 
68
<output message="tns:divideResponse"/>
 
69
</operation>
 
70
<operation name="echoStruct">
 
71
<input message="tns:echoStructRequest"/>
 
72
<output message="tns:echoStructResponse"/>
 
73
</operation>
 
74
<operation name="echoMimeAttachment">
 
75
<input message="tns:echoMimeAttachmentRequest"/>
 
76
<output message="tns:echoMimeAttachmentResponse"/>
 
77
</operation>
 
78
</portType>
 
79
<binding name="ServerExampleBinding" type="tns:ServerExamplePort">
 
80
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
 
81
<operation name="echoStructAsSimpleTypes">
 
82
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#echoStructAsSimpleTypes"/>
 
83
<input>
 
84
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
85
</input>
 
86
<output>
 
87
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
88
</output>
 
89
</operation>
 
90
<operation name="echoStringSimple">
 
91
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#echoStringSimple"/>
 
92
<input>
 
93
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
94
</input>
 
95
<output>
 
96
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
97
</output>
 
98
</operation>
 
99
<operation name="echoString">
 
100
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#echoString"/>
 
101
<input>
 
102
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
103
</input>
 
104
<output>
 
105
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
106
</output>
 
107
</operation>
 
108
<operation name="divide">
 
109
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#divide"/>
 
110
<input>
 
111
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
112
</input>
 
113
<output>
 
114
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
115
</output>
 
116
</operation>
 
117
<operation name="echoStruct">
 
118
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#echoStruct"/>
 
119
<input>
 
120
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
121
</input>
 
122
<output>
 
123
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
124
</output>
 
125
</operation>
 
126
<operation name="echoMimeAttachment">
 
127
<soap:operation soapAction="urn:SOAP_Example_Server#soap_example_server#echoMimeAttachment"/>
 
128
<input>
 
129
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
130
</input>
 
131
<output>
 
132
<soap:body use="encoded" namespace="urn:SOAP_Example_Server" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
 
133
</output>
 
134
</operation>
 
135
</binding>
 
136
<service name="ServerExampleService">
 
137
<documentation/>
 
138
<port name="ServerExamplePort" binding="tns:ServerExampleBinding">
 
139
<soap:address location="http://neo.wg.de/SOAP/example/server.php"/>
 
140
</port>
 
141
</service>
 
142
</definitions>
 
 
b'\\ No newline at end of file'