1<?xml version="1.0" encoding="UTF-8"?> 2<definitions name="WSDLInteropTestDocLitService" 3 targetNamespace="http://soapinterop.org/" 4 xmlns="http://schemas.xmlsoap.org/wsdl/" 5 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 6 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 7 xmlns:tns="http://soapinterop.org/" 8 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 9 xmlns:xsd1="http://soapinterop.org/xsd" 10 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 11 xmlns:ext="http://soapinterop.org/ext"> 12 <ext:types/> 13 14 <types> 15 <ext:schema targetNamespace="http://soapinterop.org/xsd"/> 16 <schema targetNamespace="http://soapinterop.org/xsd" 17 xmlns="http://www.w3.org/2001/XMLSchema" 18 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> 19 20 <element name="echoStringParam" type="xsd:string"/> 21 22 <element name="echoStringReturn" type="xsd:string"/> 23 </schema> 24 </types> 25 <ext:message name="echoString"/> 26 <message name="echoString"> 27 <part element="xsd1:echoStringParam" name="a"/> 28 </message> 29 <message name="echoStringResponse"> 30 <part element="xsd1:echoStringReturn" name="result"/> 31 </message> 32 33 <ext:portType name="WSDLInteropTestDocLitPortType"/> 34 35 <portType name="WSDLInteropTestDocLitPortType"> 36 <operation name="echoString"> 37 <input message="tns:echoString" name="echoString"/> 38 <output message="tns:echoStringResponse" name="echoStringResponse"/> 39 </operation> 40 </portType> 41 <ext:binding name="WSDLInteropTestDocLitPortBinding"/> 42 <binding name="WSDLInteropTestDocLitPortBinding" 43 type="tns:WSDLInteropTestDocLitPortType"> 44 <ext:binding style ="chunked"/> 45 <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> 46 <operation name="echoString"> 47 <ext:operation style ="chunked"/> 48 <soap:operation soapAction="http://soapinterop.org/" style="document"/> 49 <input name="echoString"> 50 <ext:body use ="direct"/> 51 <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 52 use="literal"/> 53 </input> 54 <output name="echoStringResponse"> 55 <ext:body use ="direct"/> 56 <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 57 use="literal"/> 58 </output> 59 </operation> 60 </binding> 61 <ext:service name="WSDLInteropTestDocLitService"/> 62 <service name="WSDLInteropTestDocLitService"> 63 <ext:port binding="tns:WSDLInteropTestDocLitPortBinding" 64 name="WSDLInteropTestDocLitPort"/> 65 <port binding="tns:WSDLInteropTestDocLitPortBinding" 66 name="WSDLInteropTestDocLitPort"> 67 <ext:address location=""/> 68 <soap:address 69 location="round3_groupF_ext.inc"/> 70 </port> 71 </service> 72</definitions> 73