Skip to content

Instantly share code, notes, and snippets.

@mh-github
Created August 15, 2015 11:07
Show Gist options
  • Select an option

  • Save mh-github/bd99d06c0fcd3b006269 to your computer and use it in GitHub Desktop.

Select an option

Save mh-github/bd99d06c0fcd3b006269 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:request="CustomerRequest" xmlns:response="CustomerResponse"
targetNamespace="http://www.mh.org/" xmlns:tns="http://www.mh.org/">
<wsdl:types>
<xsd:schema>
<xsd:import namespace="CustomerRequest" schemaLocation="../xsd/CustomerRequest.xsd" />
<xsd:import namespace="CustomerResponse" schemaLocation="../xsd/CustomerResponse.xsd" />
</xsd:schema>
</wsdl:types>
<wsdl:message name="Request">
<wsdl:part name="parameters" element="request:req" />
</wsdl:message>
<wsdl:message name="Response">
<wsdl:part name="parameters" element="response:resp" />
</wsdl:message>
<wsdl:portType name="CustomerPort">
<wsdl:operation name="invoke">
<wsdl:input message="tns:Request" />
<wsdl:output message="tns:Response" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="CustomerSOAPBinding" type="tns:CustomerPort">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="invoke">
<soap:operation soapAction="" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="CustomerService">
<wsdl:port name="CustomerPort" binding="tns:CustomerSOAPBinding">
<soap:address location="http://www.mh.org/" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment