blob: 46df32f3d5dfd645d40a00cccdf3cd7156265528 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://foo" xmlns:impl="http://foo" xmlns:intf="http://foo" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:types>
<schema targetNamespace="http://foo" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:impl="http://foo" xmlns:intf="http://foo" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<element name="echoStringResponse">
<complexType>
<sequence>
<element name="echoStringReturn" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
<element name="echoString">
<complexType>
<sequence>
<element name="input" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="echoStringResponse">
<wsdl:part element="impl:echoStringResponse" name="parameters"/>
</wsdl:message>
<wsdl:message name="echoStringRequest">
<wsdl:part element="impl:echoString" name="parameters"/>
</wsdl:message>
<wsdl:portType name="Echo">
<wsdl:operation name="echoString">
<wsdl:input message="impl:echoStringRequest" name="echoStringRequest"/>
<wsdl:output message="impl:echoStringResponse" name="echoStringResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="EchoSoapBinding" type="impl:Echo">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="echoString">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="echoStringRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="echoStringResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="EchoService">
<wsdl:port binding="impl:EchoSoapBinding" name="Echo">
<wsdlsoap:address location="http://localhost:9080/TestWeb/services/Echo"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>