blob: 11a4b7795368f318a91ccf8e183cb990a69d229e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:tns="http://www.example.org/HTTPExample/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="HTTPExample"
targetNamespace="http://www.example.org/HTTPExample/">
<wsdl:message name="NewOperationRequest">
<wsdl:part name="NewOperationRequest" type="xsd:string" />
</wsdl:message>
<wsdl:message name="NewOperationResponse">
<wsdl:part name="NewOperationResponse" type="xsd:string" />
</wsdl:message>
<wsdl:portType name="HTTPExample">
<wsdl:operation name="NewOperation">
<wsdl:input message="tns:NewOperationRequest" />
<wsdl:output message="tns:NewOperationResponse" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HTTPExampleHTTP" type="tns:HTTPExample">
<http:binding verb="GET" />
<wsdl:operation name="NewOperation">
<http:operation location="/NewOperation" />
<wsdl:input>
<http:urlEncoded />
</wsdl:input>
<wsdl:output>
<mime:content type="text/xml" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="HTTPExample">
<wsdl:port binding="tns:HTTPExampleHTTP"
name="HTTPExampleHTTP">
<http:address location="http://www.example.org/" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>