1<?xml version="1.0" encoding="UTF-8"?>
2<definitions name="SoapInterop" targetNamespace="http://soapinterop/"
3		xmlns:wsdlns="http://soapinterop/"
4		xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5		xmlns:xsd="http://www.w3.org/2001/XMLSchema"
6		xmlns="http://schemas.xmlsoap.org/wsdl/">
7	<types/>
8	<message name="echoStringRequest">
9		<part name="a" type="xsd:string"/>
10	</message>
11	<message name="echoStringResponse">
12		<part name="Result" type="xsd:string"/>
13	</message>
14	<portType name="SoapInteropEmptySAPortType">
15		<operation name="echoString" parameterOrder="a">
16			<input message="wsdlns:echoStringRequest"/>
17			<output message="wsdlns:echoStringResponse"/>
18		</operation>
19	</portType>
20	<binding name="SoapInteropEmptySABinding" type="wsdlns:SoapInteropEmptySAPortType">
21		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
22		<operation name="echoString">
23			<soap:operation soapAction=""/>
24			<input>
25				<soap:body use="encoded" namespace="http://soapinterop/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
26			</input>
27			<output>
28				<soap:body use="encoded" namespace="http://soapinterop/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
29			</output>
30		</operation>
31	</binding>
32	<service name="EmptySA">
33		<port name="SoapInteropEmptySAPort" binding="wsdlns:SoapInteropEmptySABinding">
34			<soap:address location="round3_groupD_emptysa.inc"/>
35		</port>
36	</service>
37</definitions>
38