Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9e3350c6483cf14b1b73f11f61da344432dbb5e7 (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
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="Main" targetNamespace="http://www.example.org/Main/"
	xmlns:tns="http://www.example.org/Main/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns01="http://www.example.org/Main01/"
    xmlns:tns02="http://www.example.org/Main02/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://www.example.org/Import">
	<wsdl:types>
		<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
		    xmlns:tns03="http://www.example.org/Main03/"
		    xmlns:tns04="http://www.example.org/Main04/"
			targetNamespace="http://www.example.org/Main/">
		   	<xsd:element name="MainOperation">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="in" type="xsd:string"></xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
			<xsd:element name="MainOperationResponse">
				<xsd:complexType>
					<xsd:sequence>
						<xsd:element name="out" type="xsd:string"></xsd:element>
					</xsd:sequence>
				</xsd:complexType>
			</xsd:element>
		</xsd:schema>
		<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
		    xmlns:tns05="http://www.example.org/Main06/"
		    xmlns:tns06="http://www.example.org/Main07/"
			targetNamespace="http://www.example.org/Main/">
		   	<xsd:import namespace="http://www.example.org/Import"
				schemaLocation="../Import1.xsd">
			</xsd:import>
			<xsd:element name="localElem" type="xsd1:ImpCT2"></xsd:element>
		</xsd:schema>
	</wsdl:types>
	<wsdl:message name="MainOperationRequest">
		<wsdl:part name="parameters" type="xsd1:ImpCT1"></wsdl:part>
	</wsdl:message>
	<wsdl:message name="MainOperationResponse">
		<wsdl:part name="parameters" element="tns:MainOperationResponse"></wsdl:part>
	</wsdl:message>
	<wsdl:portType name="MainPortType">
		<wsdl:operation name="MainOperation">
			<wsdl:input message="tns:MainOperationRequest"></wsdl:input>
			<wsdl:output message="tns:MainOperationResponse"></wsdl:output>
		</wsdl:operation>
	</wsdl:portType>
</wsdl:definitions>

Back to the top