1<?xml version="1.0"?> 2<definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://test-uri/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="InteropTest" targetNamespace="http://test-uri/"> 3 <types> 4 <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://test-uri/"> 5 <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> 6 <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/> 7 </schema> 8 </types> 9 <message name="testMessage"> 10 <part xmlns:apache="http://xml.apache.org/xml-soap" name="testParam" type="apache:Map"/> 11 </message> 12 <portType name="testPortType"> 13 <operation name="test"> 14 <input message="testMessage"/> 15 </operation> 16 </portType> 17 <binding name="testBinding" type="testPortType"> 18 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> 19 <operation name="test"> 20 <soap:operation soapAction="#test" style="rpc"/> 21 <input> 22 <soap:body use="encoded" namespace="http://test-uri/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 23 </input> 24 </operation> 25 </binding> 26 <service name="testService"> 27 <port name="testPort" binding="tns:testBinding"> 28 <soap:address location="test://"/> 29 </port> 30 </service> 31</definitions> 32