GEOTracGWS


Click here for a complete list of operations.

GetAssets

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 /GMWS/GEOTracWebService.asmx HTTP/1.1
Host: www.assetcontrolcenter.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://assetcontrolcenter.com/GetAssets"

<?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>
    <Authentication xmlns="http://assetcontrolcenter.com/">
      <CustomerID>string</CustomerID>
      <UserName>string</UserName>
      <Password>string</Password>
    </Authentication>
  </soap:Header>
  <soap:Body>
    <GetAssets xmlns="http://assetcontrolcenter.com/" />
  </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>
    <GetAssetsResponse xmlns="http://assetcontrolcenter.com/">
      <GetAssetsResult>
        <AssetList>
          <AssetData>
            <AssetType>string</AssetType>
            <CustomerGroup>string</CustomerGroup>
            <VIN>string</VIN>
            <AssetUN>string</AssetUN>
            <RegistrationNumber>string</RegistrationNumber>
            <Country>string</Country>
            <Province>string</Province>
            <Make>string</Make>
            <Model>string</Model>
            <Year>string</Year>
            <Driver>string</Driver>
            <CostCenter>string</CostCenter>
            <ModemSN>string</ModemSN>
            <InstallationDate xsi:nil="true" />
            <EcmSN>string</EcmSN>
            <DualModeImei>string</DualModeImei>
            <MdtSN>string</MdtSN>
            <GatewaySN>string</GatewaySN>
            <UseECMHourMeter>boolean</UseECMHourMeter>
            <UseECMOdometer>boolean</UseECMOdometer>
            <Odometer>double</Odometer>
            <DateofOdometer>dateTime</DateofOdometer>
            <HourMeter>double</HourMeter>
            <DataofHourMeter>dateTime</DataofHourMeter>
            <Description>string</Description>
            <CabCardNumber>string</CabCardNumber>
            <PermitNumber>string</PermitNumber>
            <BCGVW>string</BCGVW>
            <ABGVW>string</ABGVW>
            <SKGVW>string</SKGVW>
            <TireSize>string</TireSize>
            <TruckMobile>string</TruckMobile>
            <OffRoadConsumptionRate>double</OffRoadConsumptionRate>
            <OffRoadIdleConsumptionRate>double</OffRoadIdleConsumptionRate>
            <FuelType>string</FuelType>
            <EngineType>string</EngineType>
            <LicensePlate>string</LicensePlate>
            <SpeedLimit>int</SpeedLimit>
          </AssetData>
          <AssetData>
            <AssetType>string</AssetType>
            <CustomerGroup>string</CustomerGroup>
            <VIN>string</VIN>
            <AssetUN>string</AssetUN>
            <RegistrationNumber>string</RegistrationNumber>
            <Country>string</Country>
            <Province>string</Province>
            <Make>string</Make>
            <Model>string</Model>
            <Year>string</Year>
            <Driver>string</Driver>
            <CostCenter>string</CostCenter>
            <ModemSN>string</ModemSN>
            <InstallationDate xsi:nil="true" />
            <EcmSN>string</EcmSN>
            <DualModeImei>string</DualModeImei>
            <MdtSN>string</MdtSN>
            <GatewaySN>string</GatewaySN>
            <UseECMHourMeter>boolean</UseECMHourMeter>
            <UseECMOdometer>boolean</UseECMOdometer>
            <Odometer>double</Odometer>
            <DateofOdometer>dateTime</DateofOdometer>
            <HourMeter>double</HourMeter>
            <DataofHourMeter>dateTime</DataofHourMeter>
            <Description>string</Description>
            <CabCardNumber>string</CabCardNumber>
            <PermitNumber>string</PermitNumber>
            <BCGVW>string</BCGVW>
            <ABGVW>string</ABGVW>
            <SKGVW>string</SKGVW>
            <TireSize>string</TireSize>
            <TruckMobile>string</TruckMobile>
            <OffRoadConsumptionRate>double</OffRoadConsumptionRate>
            <OffRoadIdleConsumptionRate>double</OffRoadIdleConsumptionRate>
            <FuelType>string</FuelType>
            <EngineType>string</EngineType>
            <LicensePlate>string</LicensePlate>
            <SpeedLimit>int</SpeedLimit>
          </AssetData>
        </AssetList>
      </GetAssetsResult>
    </GetAssetsResponse>
  </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 /GMWS/GEOTracWebService.asmx HTTP/1.1
Host: www.assetcontrolcenter.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>
    <Authentication xmlns="http://assetcontrolcenter.com/">
      <CustomerID>string</CustomerID>
      <UserName>string</UserName>
      <Password>string</Password>
    </Authentication>
  </soap12:Header>
  <soap12:Body>
    <GetAssets xmlns="http://assetcontrolcenter.com/" />
  </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>
    <GetAssetsResponse xmlns="http://assetcontrolcenter.com/">
      <GetAssetsResult>
        <AssetList>
          <AssetData>
            <AssetType>string</AssetType>
            <CustomerGroup>string</CustomerGroup>
            <VIN>string</VIN>
            <AssetUN>string</AssetUN>
            <RegistrationNumber>string</RegistrationNumber>
            <Country>string</Country>
            <Province>string</Province>
            <Make>string</Make>
            <Model>string</Model>
            <Year>string</Year>
            <Driver>string</Driver>
            <CostCenter>string</CostCenter>
            <ModemSN>string</ModemSN>
            <InstallationDate xsi:nil="true" />
            <EcmSN>string</EcmSN>
            <DualModeImei>string</DualModeImei>
            <MdtSN>string</MdtSN>
            <GatewaySN>string</GatewaySN>
            <UseECMHourMeter>boolean</UseECMHourMeter>
            <UseECMOdometer>boolean</UseECMOdometer>
            <Odometer>double</Odometer>
            <DateofOdometer>dateTime</DateofOdometer>
            <HourMeter>double</HourMeter>
            <DataofHourMeter>dateTime</DataofHourMeter>
            <Description>string</Description>
            <CabCardNumber>string</CabCardNumber>
            <PermitNumber>string</PermitNumber>
            <BCGVW>string</BCGVW>
            <ABGVW>string</ABGVW>
            <SKGVW>string</SKGVW>
            <TireSize>string</TireSize>
            <TruckMobile>string</TruckMobile>
            <OffRoadConsumptionRate>double</OffRoadConsumptionRate>
            <OffRoadIdleConsumptionRate>double</OffRoadIdleConsumptionRate>
            <FuelType>string</FuelType>
            <EngineType>string</EngineType>
            <LicensePlate>string</LicensePlate>
            <SpeedLimit>int</SpeedLimit>
          </AssetData>
          <AssetData>
            <AssetType>string</AssetType>
            <CustomerGroup>string</CustomerGroup>
            <VIN>string</VIN>
            <AssetUN>string</AssetUN>
            <RegistrationNumber>string</RegistrationNumber>
            <Country>string</Country>
            <Province>string</Province>
            <Make>string</Make>
            <Model>string</Model>
            <Year>string</Year>
            <Driver>string</Driver>
            <CostCenter>string</CostCenter>
            <ModemSN>string</ModemSN>
            <InstallationDate xsi:nil="true" />
            <EcmSN>string</EcmSN>
            <DualModeImei>string</DualModeImei>
            <MdtSN>string</MdtSN>
            <GatewaySN>string</GatewaySN>
            <UseECMHourMeter>boolean</UseECMHourMeter>
            <UseECMOdometer>boolean</UseECMOdometer>
            <Odometer>double</Odometer>
            <DateofOdometer>dateTime</DateofOdometer>
            <HourMeter>double</HourMeter>
            <DataofHourMeter>dateTime</DataofHourMeter>
            <Description>string</Description>
            <CabCardNumber>string</CabCardNumber>
            <PermitNumber>string</PermitNumber>
            <BCGVW>string</BCGVW>
            <ABGVW>string</ABGVW>
            <SKGVW>string</SKGVW>
            <TireSize>string</TireSize>
            <TruckMobile>string</TruckMobile>
            <OffRoadConsumptionRate>double</OffRoadConsumptionRate>
            <OffRoadIdleConsumptionRate>double</OffRoadIdleConsumptionRate>
            <FuelType>string</FuelType>
            <EngineType>string</EngineType>
            <LicensePlate>string</LicensePlate>
            <SpeedLimit>int</SpeedLimit>
          </AssetData>
        </AssetList>
      </GetAssetsResult>
    </GetAssetsResponse>
  </soap12:Body>
</soap12:Envelope>