Skip to main content
summaryrefslogtreecommitdiffstats
blob: 88d62b991bcdb5e42caa184427831a2f23756114 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions 
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:test="http://www.example.org/test/"
	targetNamespace="http://www.example.org/test/"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:txsd="http://www.example.org/testxsd"
	xmlns:txsd2="http://www.example.org/testxsd2">

	<wsdl:types>
		<schema xmlns="http://www.w3.org/2001/XMLSchema">
 		    <import namespace="http://www.example.org/testxsd2"
				schemaLocation="../../2a/test.xsd" />
			<import namespace="http://www.example.org/testxsd"
				schemaLocation="../../../test.xsd" />
		</schema>
	</wsdl:types>
	<wsdl:message name="NewOperationRequest">
		<wsdl:part name="input" element="txsd:TestString"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="NewOperationResponse">
		<wsdl:part name="output" element="txsd2:TestString2"></wsdl:part>
	</wsdl:message>
	<wsdl:portType name="TestPortType">
		<wsdl:operation name="NewOperation">
			<wsdl:input message="test:NewOperationRequest"></wsdl:input>
			<wsdl:output message="test:NewOperationResponse"></wsdl:output>
		</wsdl:operation>
	</wsdl:portType>
	<wsdl:binding name="NewBinding" type="test:TestPortType">
		<soap:binding style="document"
			transport="http://schemas.xmlsoap.org/soap/http" />
		<wsdl:operation name="NewOperation">
			<soap:operation
				soapAction="http://www.example.org/test/NewOperation" />
			<wsdl:input>
				<soap:body use="literal" />
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal" />
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>
</wsdl:definitions>

Back to the top