Skip to main content
summaryrefslogtreecommitdiffstats
blob: df32b5ff5e6c651467503f6795ff7fcb1deb2454 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns="http://www.example.org/Main004/"
    name="Main004"
	targetNamespace="http://www.example.org/Main004/"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
	xmlns:wsdl1="http://www.example.org/Import001/">
	
	<!-- Used Import -->
	
	<wsdl:import namespace="http://www.example.org/Import001/"
		location="Import001.wsdl">
	</wsdl:import>
	
	<wsdl:service name="MainService">
		<wsdl:port name="NewPort" binding="wsdl1:Import001SOAP">
			<soap:address location="http://www.example.org/"></soap:address>
		</wsdl:port>
	</wsdl:service>
</wsdl:definitions>

Back to the top