olegkhuss / verilocationsoap
php soap client/wrapper for verilocation services
0.1.0
2014-11-19 10:37 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-12-23 01:35:09 UTC
README
Sample usage
Include in composer.json
{
.....
"require": {
"olegkhuss/verilocationsoap": "~0.1.0@dev"
}
}
PHP code
<?php
use Gelo\Verilocation\SoapClient as VerilocationClient;
$client = new VerilocationClient('http://www.verilocation.com/gps/xml/version_001.asmx?wsdl', array(
// options
// 'cache_wsdl' => WSDL_CACHE_MEMORY,
));
try {
$client->doLogon('<username>', '<password>');
// is webservice active?
print_r($client->isWebserviceActive());
// get all vehicles
print_r($client->getVehicles());
// get all vehicles extended
print_r($client->getVehiclesExt());
// get all vehicles extended
print_r($client->getLocationsLatest());
} catch (\Exception $e) {
// could not login, chekc username/password
throw $e;
}