1<?xml version="1.0"?> 2<definitions name="SoapInterop" targetNamespace="http://soapinterop.org/definitions/" 3 xmlns:wsdlns="http://soapinterop.org/definitions/" 4 xmlns:typens="http://soapinterop.org/xsd" 5 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 6 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 7 xmlns="http://schemas.xmlsoap.org/wsdl/"> 8 <import location="import2B.xsd" namespace="http://soapinterop.org/xsd" /> 9 <message name='Server.echoStruct'> 10 <part name='inputStruct' type='typens:SOAPStruct'/> 11 </message> 12 <message name='Server.echoStructResponse'> 13 <part name='Result' type='typens:SOAPStruct'/> 14 </message> 15 16 <portType name="SoapInteropImport2PortType"> 17 <operation name='echoStruct' parameterOrder='inputStruct'> 18 <input message='wsdlns:Server.echoStruct' /> 19 <output message='wsdlns:Server.echoStructResponse' /> 20 </operation> 21 </portType> 22</definitions> 23