Skip to content
Zachary Hillman edited this page Jun 11, 2019 · 5 revisions

Mandatory request parameter(s)

  1. Test

Available customization(s)

  1. Test value is echoed back in the response

Example

Request Response
Test: Any test string Test: Any test string

Sample Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:com:vantiv:types:encryption:transactions:v1">
   <soapenv:Header>
      <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
         <wsse:UsernameToken>
            <wsse:Username>username</wsse:Username>
            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">passwordCheck</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </soapenv:Header>
   <soapenv:Body>
      <urn:EchoRequest>
         <urn:Test>Any test String</urn:Test>
      </urn:EchoRequest>
   </soapenv:Body>
</soapenv:Envelope>

Sample Response

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <ns2:EchoResponse xmlns:ns2="urn:com:vantiv:types:encryption:transactions:v1">
         <ns2:Response>Any test String</ns2:Response>
      </ns2:EchoResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Clone this wiki locally