Select Sidearea

Populate the sidearea with useful widgets. It’s simple to add images, categories, latest post, social media icon links, tag clouds, and more.

I tuoi dati personali verranno utilizzati per supportare la tua esperienza su questo sito web, per gestire l'accesso al tuo account e per altri scopi descritti nella nostra privacy policy.

Use Cisco AXL API from PHP

Use Cisco AXL API from PHP

Use Cisco AXL API from PHP

Sometimes if very usefull to syncronize data, contacts and user between system, Cisco CallManager can be managed through AXL API.

This is an example to retrieve list of end-user using SQL query.

I leave some debug function commented for other purpose.

<?php

$client = new SoapClient(“AXLAPI.wsdl”,
array(‘trace’=>true,
‘exceptions’=>true,
‘location’=>”https://cucm-ip:8443/axl”,
‘login’=>’administrator’,
‘password’=>’password’,
));
//$response = $client->getUser(array(“userid”=>”administrator”));

$sql = “select * from enduser”;

$response = $client->executeSQLQuery(array(“sql”=>$sql));

//$response = $client->__getFunctions();
echo “<pre>”;
var_dump($response);

?>