<?xml version='1.0' encoding='UTF-8'?>
<definitions name="SampleWSServiceDefinitions" targetNamespace="http://sample" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s0="http://sample" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/">
   <types>
      <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://sample"
      xmlns:xs="http://www.w3.org/2001/XMLSchema">
         <xs:element name="send">
            <xs:complexType>
               <xs:sequence>
                  <xs:element name="id" type="xs:string"/>
                  <xs:element name="item" type="xs:string"/>
                  <xs:element name="number" type="xs:int"/>
               </xs:sequence>
            </xs:complexType>
         </xs:element>
         <xs:element name="sendResponse">
            <xs:complexType>
               <xs:sequence/>
            </xs:complexType>
         </xs:element>
      </xs:schema>
   </types>
   <message name="send">
      <part element="s0:send" name="parameters"/>
   </message>
   <message name="sendResponse">
      <part element="s0:sendResponse" name="parameters"/>
   </message>
   <portType name="SampleWS">
      <operation name="send" parameterOrder="parameters">
         <input message="s0:send"/>
         <output message="s0:sendResponse"/>
      </operation>
   </portType>
   <binding name="SampleWSServiceSoapBinding" type="s0:SampleWS">
      <s1:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
      <operation name="send">
         <s1:operation soapAction="" style="document"/>
         <input>
            <s1:body parts="parameters" use="literal"/>
         </input>
         <output>
            <s1:body use="literal"/>
         </output>
      </operation>
   </binding>
   <service name="SampleWSService">
      <port binding="s0:SampleWSServiceSoapBinding" name="SampleWSSoapPort">
         <s1:address location="http://localhost:7001/SampleWS/SampleWS"/>
      </port>
   </service>
</definitions>