Skip to main content
summaryrefslogtreecommitdiffstats
blob: b0a42a7160cd0bdbf528b4899295e94521412889 (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
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" 
	xmlns:tns="http://www.example.com" 
	targetNamespace="http://www.example.com">
    
    <import location="firstlevel.wsdl" namespace="http://www.example.com"/>
    
    <portType name="TestPortType">

    	<operation name="TestOperation">

    		<!-- This is located in the first level import -->

    		<input message="tns:testINPUTmessage"/>

    		<!-- This is located in the second level import -->

    		<output message="tns:testOUTPUTmessage"/>

    	</operation>

    </portType>
    
</definitions>

Back to the top