Service


Click here for a complete list of operations.

processRequestString

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /ECSAPI/Service.asmx HTTP/1.1
Host: xcarrier.test.parkseed.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "processRequest/processRequestString"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <processRequestString xmlns="processRequest">
      <requestString>string</requestString>
      <tname>string</tname>
      <isEncript>string</isEncript>
      <opt1>string</opt1>
      <opt2>string</opt2>
      <opt3>string</opt3>
      <opt4>string</opt4>
      <opt5>string</opt5>
      <opt6>string</opt6>
      <opt7>string</opt7>
      <opt8>string</opt8>
      <opt9>string</opt9>
      <opt10>string</opt10>
    </processRequestString>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <processRequestStringResponse xmlns="processRequest">
      <processRequestStringResult>string</processRequestStringResult>
    </processRequestStringResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /ECSAPI/Service.asmx HTTP/1.1
Host: xcarrier.test.parkseed.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <processRequestString xmlns="processRequest">
      <requestString>string</requestString>
      <tname>string</tname>
      <isEncript>string</isEncript>
      <opt1>string</opt1>
      <opt2>string</opt2>
      <opt3>string</opt3>
      <opt4>string</opt4>
      <opt5>string</opt5>
      <opt6>string</opt6>
      <opt7>string</opt7>
      <opt8>string</opt8>
      <opt9>string</opt9>
      <opt10>string</opt10>
    </processRequestString>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <processRequestStringResponse xmlns="processRequest">
      <processRequestStringResult>string</processRequestStringResult>
    </processRequestStringResponse>
  </soap12:Body>
</soap12:Envelope>