blob: ae24860a15839eb6bfa3cedb0d7c0a2490325003 [file] [log] [blame]
<?xml version="1.0"?>
<definitions name="SampleService" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
<message name="getSampleRequest">
<part name="zipcode" type="xsd:string"/>
</message>
<message name="getSampleResponse">
<part name="return" type="xsd:float"/>
</message>
<portType name="SamplePortType">
<operation name="getSample">
<input message="tns:getSampleRequest"/>
<output message="tns:getSampleResponse"/>
</operation>
</portType>
<binding name="SampleBinding" type="tns:SamplePortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="getSample">
<soap:operation soapAction=""/>
<input>
<soap:body use="encoded" namespace="http://tempuri.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="http://tempuri.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="SampleService">
<documentation></documentation>
<port name="SamplePort" binding="tns:SampleBinding">
<soap:address location="http://tempuri.org/"/>
</port>
</service>
</definitions>