2017 © Pedro Peláez
 

library verilocationsoap

php soap client/wrapper for verilocation services

image

olegkhuss/verilocationsoap

php soap client/wrapper for verilocation services

  • Wednesday, November 19, 2014
  • by olegkhuss
  • Repository
  • 0 Watchers
  • 0 Stars
  • 57 Installations
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

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;
}

The Versions

19/11 2014

dev-master

9999999-dev https://bitbucket.org/olegkhuss/verilocationsoap

php soap client/wrapper for verilocation services

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Oleg Khussainov

soap wsdl verilocation

19/11 2014

0.1.0

0.1.0.0 https://bitbucket.org/olegkhuss/verilocationsoap

php soap client/wrapper for verilocation services

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Oleg Khussainov