WIAON_Access


Click here for a complete list of operations.

HVT_Validation

Height Value Txn Online Validation (Standard Edition). Result Found = 1, not Found = 0, Error = 9

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
_LIM_AMT:
TIM_FRM:
BRNLDC:
NUMBER:
TRAMDAT:
TRANTIM:
COUNAME:
TRANTYPE:
AMOUNT:
CASH:
RETORWHO:
TILLNBR:
TILLSEQ:
TELCODE:
FIRST:
MID:
LAST:
LASTS:
BRNCNTR:
COMMENT:
GROUP:
CURNAME:
DATA_QUEUED:
password:

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 /WIAON_Access.asmx HTTP/1.1
Host: r4wiaon.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.ICE_Systems_Remote.net/HVT_Validation"

<?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>
    <HVT_Validation xmlns="http://www.ICE_Systems_Remote.net/">
      <_LIM_AMT>string</_LIM_AMT>
      <TIM_FRM>string</TIM_FRM>
      <BRNLDC>string</BRNLDC>
      <NUMBER>string</NUMBER>
      <TRAMDAT>string</TRAMDAT>
      <TRANTIM>string</TRANTIM>
      <COUNAME>string</COUNAME>
      <TRANTYPE>string</TRANTYPE>
      <AMOUNT>string</AMOUNT>
      <CASH>string</CASH>
      <RETORWHO>string</RETORWHO>
      <TILLNBR>string</TILLNBR>
      <TILLSEQ>string</TILLSEQ>
      <TELCODE>string</TELCODE>
      <FIRST>string</FIRST>
      <MID>string</MID>
      <LAST>string</LAST>
      <LASTS>string</LASTS>
      <BRNCNTR>string</BRNCNTR>
      <COMMENT>string</COMMENT>
      <GROUP>string</GROUP>
      <CURNAME>string</CURNAME>
      <DATA_QUEUED>boolean</DATA_QUEUED>
      <password>string</password>
    </HVT_Validation>
  </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>
    <HVT_ValidationResponse xmlns="http://www.ICE_Systems_Remote.net/">
      <HVT_ValidationResult>xmlxml</HVT_ValidationResult>
    </HVT_ValidationResponse>
  </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 /WIAON_Access.asmx HTTP/1.1
Host: r4wiaon.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>
    <HVT_Validation xmlns="http://www.ICE_Systems_Remote.net/">
      <_LIM_AMT>string</_LIM_AMT>
      <TIM_FRM>string</TIM_FRM>
      <BRNLDC>string</BRNLDC>
      <NUMBER>string</NUMBER>
      <TRAMDAT>string</TRAMDAT>
      <TRANTIM>string</TRANTIM>
      <COUNAME>string</COUNAME>
      <TRANTYPE>string</TRANTYPE>
      <AMOUNT>string</AMOUNT>
      <CASH>string</CASH>
      <RETORWHO>string</RETORWHO>
      <TILLNBR>string</TILLNBR>
      <TILLSEQ>string</TILLSEQ>
      <TELCODE>string</TELCODE>
      <FIRST>string</FIRST>
      <MID>string</MID>
      <LAST>string</LAST>
      <LASTS>string</LASTS>
      <BRNCNTR>string</BRNCNTR>
      <COMMENT>string</COMMENT>
      <GROUP>string</GROUP>
      <CURNAME>string</CURNAME>
      <DATA_QUEUED>boolean</DATA_QUEUED>
      <password>string</password>
    </HVT_Validation>
  </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>
    <HVT_ValidationResponse xmlns="http://www.ICE_Systems_Remote.net/">
      <HVT_ValidationResult>xmlxml</HVT_ValidationResult>
    </HVT_ValidationResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

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

GET /WIAON_Access.asmx/HVT_Validation?_LIM_AMT=string&TIM_FRM=string&BRNLDC=string&NUMBER=string&TRAMDAT=string&TRANTIM=string&COUNAME=string&TRANTYPE=string&AMOUNT=string&CASH=string&RETORWHO=string&TILLNBR=string&TILLSEQ=string&TELCODE=string&FIRST=string&MID=string&LAST=string&LASTS=string&BRNCNTR=string&COMMENT=string&GROUP=string&CURNAME=string&DATA_QUEUED=string&password=string HTTP/1.1
Host: r4wiaon.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataTable xmlns="http://www.ICE_Systems_Remote.net/">xmlxml</DataTable>

HTTP POST

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

POST /WIAON_Access.asmx/HVT_Validation HTTP/1.1
Host: r4wiaon.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

_LIM_AMT=string&TIM_FRM=string&BRNLDC=string&NUMBER=string&TRAMDAT=string&TRANTIM=string&COUNAME=string&TRANTYPE=string&AMOUNT=string&CASH=string&RETORWHO=string&TILLNBR=string&TILLSEQ=string&TELCODE=string&FIRST=string&MID=string&LAST=string&LASTS=string&BRNCNTR=string&COMMENT=string&GROUP=string&CURNAME=string&DATA_QUEUED=string&password=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataTable xmlns="http://www.ICE_Systems_Remote.net/">xmlxml</DataTable>