Skip to content

Instantly share code, notes, and snippets.

@tjsnell
Created May 26, 2013 16:48
Show Gist options
  • Save tjsnell/5653319 to your computer and use it in GitHub Desktop.
Save tjsnell/5653319 to your computer and use it in GitHub Desktop.
<wsdl:binding name="CustomerServiceServiceSoapBinding" type="tns:CustomerService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="updateCustomer">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="updateCustomer">
<soap:body use="literal"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="getCustomersByName">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="getCustomersByName">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="getCustomersByNameResponse">
<soap:body use="literal"/>
</wsdl:output>
<wsdl:fault name="NoSuchCustomerException">
<soap:fault name="NoSuchCustomerException" use="literal"/>
</wsdl:fault>
</wsdl:operation>
</wsdl:binding>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment