File: outputtest001.xml

package info (click to toggle)
libpod-wsdl-perl 0.063-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 320 kB
  • ctags: 90
  • sloc: perl: 1,808; xml: 44; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 2,058 bytes parent folder | download | duplicates (4)
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
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://localhost/My/Server" xmlns:impl="http://localhost/My/Server" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns1="http://localhost/My/Server">

	<wsdl:types>
		<schema targetNamespace="http://localhost/My/Server" xmlns="http://www.w3.org/2001/XMLSchema">
			<import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
			<complexType name="ArrayOfString">
				<complexContent>
					<restriction base="soapenc:Array">
						<attribute ref="soapenc:arrayType" wsdl:arrayType="soapenc:string[]" />
					</restriction>
				</complexContent>
			</complexType>
		</schema>
	</wsdl:types>

	<wsdl:message name="fooRequest">
		<wsdl:part name="bla" type="tns1:ArrayOfString" />
	</wsdl:message>

	<wsdl:message name="empty" />

	<wsdl:portType name="MyServerHandler">
		<wsdl:operation name="foo" parameterOrder="bla">
			<wsdl:input message="impl:fooRequest" name="fooRequest" />
			<wsdl:output message="impl:empty" />
		</wsdl:operation>

	</wsdl:portType>

	<wsdl:binding name="MyServerSoapBinding" type="impl:MyServerHandler">
		<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />

		<wsdl:operation name="foo">
			<wsdlsoap:operation soapAction="" />
			<wsdl:input name="fooRequest">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/My/Server" use="encoded" />
			</wsdl:input>
			<wsdl:output name="empty">
				<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/My/Server" use="encoded" />
			</wsdl:output>
		</wsdl:operation>

	</wsdl:binding>

	<wsdl:service name="MyServerHandlerService">
		<wsdl:port binding="impl:MyServerSoapBinding" name="MyServer">
			<wsdlsoap:address location="http://localhost/My/Server" />
		</wsdl:port>
	</wsdl:service>

</wsdl:definitions>