<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="pmp" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="api/v1/realtime" targetNamespace="pmp">
  <types>
    <schema targetNamespace="pmp" xmlns="http://www.w3.org/2001/XMLSchema">
      <xsd:complexType name="PMPTransaction">
        <xsd:sequence>
          <xsd:element name="Username" type="xsd:string"/>
          <xsd:element name="DestinationPMP" type="xsd:string"/>
          <xsd:element name="Request" type="xsd:string"/>
          <xsd:element name="Password" type="xsd:string"/>
        </xsd:sequence>
      </xsd:complexType>
      <xsd:complexType name="PMPTransactionResult">
        <xsd:sequence>
          <xsd:element name="TransactionID" type="xsd:string"/>
          <xsd:element name="TransactionStatus" type="xsd:string"/>
          <xsd:element name="ErrorMessage" type="xsd:string"/>
        </xsd:sequence>
      </xsd:complexType>
      <xsd:element name="PMPTransaction" type="tns:PMPTransaction"/>
      <xsd:element name="SubmitTransactionResponse" type="tns:PMPTransactionResult"/>
    </schema>
  </types>
  <message name="SubmitTransaction">
    <part name="PMPTransaction" element="tns:PMPTransaction"/>
  </message>
  <message name="SubmitTransactionResponse">
    <part name="PMPTransactionResult" element="tns:SubmitTransactionResponse"/>
  </message>
  <portType name="api/v1/realtime_port">
    <operation name="SubmitTransaction">
      <input message="tns:SubmitTransaction"/>
      <output message="tns:SubmitTransactionResponse"/>
    </operation>
  </portType>
  <binding name="api/v1/realtime_binding" type="tns:api/v1/realtime_port">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="SubmitTransaction">
      <soap:operation soapAction="SubmitTransaction"/>
      <input>
        <soap:body use="literal"/>
      </input>
      <output>
        <soap:body use="literal"/>
      </output>
    </operation>
  </binding>
  <service name="service">
    <port name="api/v1/realtime_port" binding="tns:api/v1/realtime_binding">
      <soap:address location="https://pmpclearinghouse.net/api/v1/realtime/action"/>
    </port>
  </service>
</definitions>
