So i just been handed xRoute to play with and it's quite complicated to start.
I'm trying to use xRoute WS with calculateBulkRouteInfo but so far impossible to make it work and impossible to find documentation.
I'm trying to call it via PHP and i don't know how the data needs to be formated. I tried mimicing the exemple code with php arrays but so far no dice.
To make it real simple here is what i'm trying to do :
Code: Select all
<?php
$wsdl = "my_wsdl_url";
$service = new SoapClient($wsdl);
$answerMe = $service->calculateExtendedRoute($array);
var_dump($answerMe);
?>
Can someone point me in the right direction ?