28 lines
960 B
PHP
28 lines
960 B
PHP
#!/usr/bin/php -c/var/www/batch/config/php_batch_sd.ini
|
|
<?
|
|
|
|
include_once(INCLUDE_PATH.'partenaires/classMAmabis.php');
|
|
|
|
$iAmabis=new MAmabis();
|
|
$rep=$iAmabis->getZonage('17 AV JEAN MOULIN', 93140, 'BONDY',true, false);
|
|
|
|
die(print_r($rep));
|
|
|
|
|
|
ini_set('soap.wsdl_cache_enabled', 0);
|
|
|
|
$client = new SoapClient(null, //'http://www.amabis.com/ama.wsdl',//null, //
|
|
array( 'location' => 'http://sw4.amabis.com:5101',
|
|
'uri' => 'http://sw4.amabis.com:5101',
|
|
'soap_version' => SOAP_1_1,
|
|
'trace' => 1,
|
|
'style' => SOAP_RPC,
|
|
'use' => SOAP_ENCODED,
|
|
'connection_timeout'=> 2,
|
|
)
|
|
);
|
|
|
|
print_r($client->__getFunctions());
|
|
|
|
?>
|