<?xml version="1.0" encoding="UTF-8"?>
<definitions name="B2BService_Service-interface"
  targetNamespace="http://www.b2bserviceservice.com/B2BService-interface"
  xmlns="http://schemas.xmlsoap.org/wsdl/"
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  xmlns:tns="http://www.b2bserviceservice.com/B2BService"
    xmlns:xsd="http://www.w3.org/1999/XMLSchema">

<types>
  <xsd:schema
      targetNamespace="http://www.b2bserviceservice.com/B2BService"
        xmlns="http://www.w3.org/1999/XMLSchema/">
    <xsd:complexType name="Element">
    </xsd:complexType>
  </xsd:schema>
</types>

<message name="InsendMessageRequest">
  <part name="stringDocument" type="xsd:string"/>
</message>

<message name="OutsendMessageResponse">
  <part name="meth1_outType" type="xsd:string"/>
</message>

<message name="InsendMessageXMLRequest">
  <part name="xmlDocument" type="xmldom"/>
</message>

<message name="OutsendMessageXMLResponse">
  <part name="meth2_outType" type="xsd:string"/>
</message>



<portType name="B2BService_Service">
  <operation name="sendMessage">
    <input message="InsendMessageRequest"/>
    <output message="OutsendMessageResponse"/>
  </operation>

  <operation name="sendMessageXML">
    <input message="InsendMessageXMLRequest"/>
    <output message="OutsendMessageXMLResponse"/>
  </operation>
</portType>



<binding name="B2BService_ServiceBinding" type="B2BService_Service">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  <operation name="sendMessage">
    <soap:operation soapAction="urn:B2BService"/>
    <input>
      <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
          	 namespace="urn:B2BService"
           	 use="encoded"/>
    </input>
    <output>
      <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
          	 namespace="urn:B2BService"
      		 use="encoded"/>
    </output>
  </operation>
  <operation name="sendMessageXML">
    <soap:operation soapAction="urn:B2BService"/>
    <input>
      <soap:body encodingStyle="http://xml.apache.org/xml-soap/literalxml/"
          	 namespace="urn:B2BService"
          	 use="encoded"/>
    </input>
    <output>
      <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
          	 namespace="urn:B2BService"
      		 use="encoded"/>
    </output>
  </operation>
</binding>

<service name="B2BService">
  <documentation>IBM WSTK 2.0 generated service definition file</documentation>
  <port binding="B2BService_ServiceBinding" name="B2BService_ServicePort">
    <soap:address location="http://localhost:8088/soap/servlet/rpcrouter/"/>
  </port>
</service>



</definitions>

