WS_Android


Click here for a complete list of operations.

WS_FINISHCALL

Finishes a call in Haul-IT. This includes modifying the original call (activity or qty), creating new calls based on the driver activity code (FL04). the logid of the call to finish (RM03_LOGID) Route number Truck number Odometer value when the call started [int] Odometer value when the call ended [int] Driver number Route date [yyyy-MM-dd] Number of lifts completed on the call [INT] Activity the driver executed Time the call started [yyyy-MM-dd hh:mm tt] Time the call ended [yyyy-MM-dd hh:mm tt] 2 character company code ValueDescription 1Adjust the cm05 qty 0Don't adjust the cm05 qty Number of bins on site as counted by the device New service number if select by bin is active latitude when the call was started longitude when the call was started latitude when the call was finished longitude when the call was finished staged activity code if applicable True on success

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
logid:
route:
truck:
startOdom:
endOdom:
driver:
routeDate:
qty:
activity:
startTime:
endTime:
companyCode:
doCM05Adjustment:
binsOnSite:
newServ:
startLat:
startLong:
endLat:
endLong:
stagedActivity:

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 /TruxWeb/WSRout_Android/WS_Android.asmx HTTP/1.1
Host: payments.robinsonwasteservices.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.trux.com/WS_FINISHCALL"

<?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:Header>
    <Credentials xmlns="http://www.trux.com">
      <sAccountID>string</sAccountID>
      <sAuthCode>string</sAuthCode>
      <isAuthCodeEncrypted>boolean</isAuthCodeEncrypted>
      <areParametersEncrypted>boolean</areParametersEncrypted>
      <encryptedParameterNames>
        <string>string</string>
        <string>string</string>
      </encryptedParameterNames>
      <requireEncryptedResponse>boolean</requireEncryptedResponse>
      <encryptionMethod>string</encryptionMethod>
      <keyInfo>
        <encryptedKey>string</encryptedKey>
        <encryptionPublicKey>string</encryptionPublicKey>
      </keyInfo>
      <publicAuthKey>string</publicAuthKey>
    </Credentials>
  </soap:Header>
  <soap:Body>
    <WS_FINISHCALL xmlns="http://www.trux.com">
      <logid>string</logid>
      <route>string</route>
      <truck>string</truck>
      <startOdom>string</startOdom>
      <endOdom>string</endOdom>
      <driver>string</driver>
      <routeDate>string</routeDate>
      <qty>string</qty>
      <activity>string</activity>
      <startTime>string</startTime>
      <endTime>string</endTime>
      <companyCode>string</companyCode>
      <doCM05Adjustment>string</doCM05Adjustment>
      <binsOnSite>string</binsOnSite>
      <newServ>string</newServ>
      <startLat>string</startLat>
      <startLong>string</startLong>
      <endLat>string</endLat>
      <endLong>string</endLong>
      <stagedActivity>string</stagedActivity>
    </WS_FINISHCALL>
  </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>
    <WS_FINISHCALLResponse xmlns="http://www.trux.com">
      <WS_FINISHCALLResult>boolean</WS_FINISHCALLResult>
    </WS_FINISHCALLResponse>
  </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 /TruxWeb/WSRout_Android/WS_Android.asmx HTTP/1.1
Host: payments.robinsonwasteservices.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:Header>
    <Credentials xmlns="http://www.trux.com">
      <sAccountID>string</sAccountID>
      <sAuthCode>string</sAuthCode>
      <isAuthCodeEncrypted>boolean</isAuthCodeEncrypted>
      <areParametersEncrypted>boolean</areParametersEncrypted>
      <encryptedParameterNames>
        <string>string</string>
        <string>string</string>
      </encryptedParameterNames>
      <requireEncryptedResponse>boolean</requireEncryptedResponse>
      <encryptionMethod>string</encryptionMethod>
      <keyInfo>
        <encryptedKey>string</encryptedKey>
        <encryptionPublicKey>string</encryptionPublicKey>
      </keyInfo>
      <publicAuthKey>string</publicAuthKey>
    </Credentials>
  </soap12:Header>
  <soap12:Body>
    <WS_FINISHCALL xmlns="http://www.trux.com">
      <logid>string</logid>
      <route>string</route>
      <truck>string</truck>
      <startOdom>string</startOdom>
      <endOdom>string</endOdom>
      <driver>string</driver>
      <routeDate>string</routeDate>
      <qty>string</qty>
      <activity>string</activity>
      <startTime>string</startTime>
      <endTime>string</endTime>
      <companyCode>string</companyCode>
      <doCM05Adjustment>string</doCM05Adjustment>
      <binsOnSite>string</binsOnSite>
      <newServ>string</newServ>
      <startLat>string</startLat>
      <startLong>string</startLong>
      <endLat>string</endLat>
      <endLong>string</endLong>
      <stagedActivity>string</stagedActivity>
    </WS_FINISHCALL>
  </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>
    <WS_FINISHCALLResponse xmlns="http://www.trux.com">
      <WS_FINISHCALLResult>boolean</WS_FINISHCALLResult>
    </WS_FINISHCALLResponse>
  </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 /TruxWeb/WSRout_Android/WS_Android.asmx/WS_FINISHCALL?logid=string&route=string&truck=string&startOdom=string&endOdom=string&driver=string&routeDate=string&qty=string&activity=string&startTime=string&endTime=string&companyCode=string&doCM05Adjustment=string&binsOnSite=string&newServ=string&startLat=string&startLong=string&endLat=string&endLong=string&stagedActivity=string HTTP/1.1
Host: payments.robinsonwasteservices.com
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://www.trux.com">boolean</boolean>

HTTP POST

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

POST /TruxWeb/WSRout_Android/WS_Android.asmx/WS_FINISHCALL HTTP/1.1
Host: payments.robinsonwasteservices.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

logid=string&route=string&truck=string&startOdom=string&endOdom=string&driver=string&routeDate=string&qty=string&activity=string&startTime=string&endTime=string&companyCode=string&doCM05Adjustment=string&binsOnSite=string&newServ=string&startLat=string&startLong=string&endLat=string&endLong=string&stagedActivity=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<boolean xmlns="http://www.trux.com">boolean</boolean>