Questions tagged [cisco-axl]

Cisco Administrative XML Web Service (AXL)

The Administrative XML Web Service (AXL) is a XML/SOAP based interface that provides a mechanism for inserting, retrieving, updating and removing data from the Unified Communication configuration database.

Developers can use AXL and the provided WSDL to Create, Read, Update, and Delete objects such as gateways, users, devices, route-patterns and much more..

54 questions
8
votes
1 answer

Using Perl to get list of IP addresses from Cisco Call Manager

I need to retrieve a list of IP addresses of phones from Cisco Unified Call Manager, and I'd like to be able to do it using Perl and standard modules as much as possible. I can get the addresses using snmpwalk (we are using SNMP v3) but for some…
WVEagle81
  • 89
  • 4
6
votes
2 answers

How to escape a string for a SQL query when you really CAN'T use parameters

I've seen this question more than a few times obviously but haven't seen a good example of when parameterized queries truly aren't an option…but I think I have one. I'm working with the Cisco Call Manager AXL API. Its backend is an Informix DB.…
S'pht'Kr
  • 2,809
  • 1
  • 24
  • 43
3
votes
1 answer

Example doAuthenticateUser request message in CUCM 8.5 AXLAPI

The WSDL supplied by Cisco for the their AXLAPI web service is not consumable by WCF Add Service Reference or ASMX Add Web Reference - it produces code that blows up in the Xml Serializer Apparently the WSDL works fine from Java toolkits I only need…
Richard Blewett
  • 6,089
  • 1
  • 18
  • 23
3
votes
1 answer

Cisco Mobility regarding JTAPI

I'm developing an application using the Cisco JTAPI API. But one issue I'm facing is when the user enables mobility on his VoIP telephone. Then I'm unable to control the mobility call (the call forwarded to fx. the users mobile phone) through the…
2
votes
1 answer

NetBeans 12.6, Spring Boot / Maven, Cisco AXL Schema - Background scanning of projects

Often related to Background scanning of projects people complain that this happens when NetBeans is started. I have a Spring Boot 2.6.x with Maven 3.8.2 project, using Cisco AXL Schema 12.5. With Apache CXF from this AXL Schema a lot of Java source…
neblaz
  • 683
  • 10
  • 32
2
votes
1 answer

Get All results without filters in Cisco AXL CUCM

I can't get the entire results of particular function like listPhone or getConferenceBridge, as it requires to provide particular search through searchCriteria. Could anyone propose a solution for that except directly querying the…
youhana
  • 318
  • 2
  • 16
2
votes
2 answers

Cisco Unified Call Manager (CUCM) AXL API Update Phone successed but no change in my device

I'm working with cisco CUCM AXL API & C#, I want to change description's phone.There is no problem in my code ,but the device phone still with the recent description , when i access to Cisco mangement , i find the new description but on on the…
Zied R.
  • 4,964
  • 2
  • 36
  • 67
2
votes
2 answers

Cisco CallManager AXL SQL Toolkit - Retrieve directory number and user ID

I have the below SQL query to retrieve the list of userid and their telephonenumber using Cisco CallManager AXL SQL Toolkit: sql query="select d.name as deviceName, e.userid, e.telephonenumber from device d left outer join endUser e on…
user1904221
  • 41
  • 1
  • 4
2
votes
0 answers

How to add new ip phone cisco and new line with Java using AXL API CUCM 6?

I want to add a new ip phone and new line with Java using AXL API of Cisco Call Manager 6. Here is my code: XRoutePartition partition = new XRoutePartition(); partition.setName("PT_INTERNAL"); XNPDirectoryNumber dirn = new…
2
votes
1 answer

Cisco Unified Messenger SOAP (AXL) query, how to return all values?

Using SOAP against CUCM's AXL web service, there are a number of query calls. getLine getDeviceProfile getUser and so on. The WDSL shows:
geoffc
  • 4,030
  • 7
  • 44
  • 51
1
vote
2 answers

AXLAPIService Cisco Unified Communications Manager

Hello I am trying to get a list of calls that were placed to a specific phone number, is this possible using the api? thanks
myaccount
  • 11
  • 1
1
vote
2 answers

ciscoaxl api python errors

I am starting out working on looking into using Python for some Cisco CUCM automation. I found the plugin ciscoaxl here, I installed it and programed the following script: from ciscoaxl import axl cucm = "10.10.20.1" username = "axlusr" password =…
matrix452
  • 21
  • 2
1
vote
2 answers

Spring Boot project (Maven) with AXL - NetBeans cannot find generated AXL packages/classes

A Spring Boot project (Maven) using AXL (Schema 12.5), I use NetBeans 12 as development environment. I can build the project, it builds successful, the target-forder containts the generated AXL classes, etc., but NetBeans still shows errors in the…
neblaz
  • 683
  • 10
  • 32
1
vote
1 answer

Working on AXL scripts for CUCM - why does this code handle only the last item?

I am trying this code and its working fine: phone_list = resp['return'].phone for phone in phone_list: x = (phone.name) print(x) try: resp = service.removePhone(name = x) except Fault: show_history() print(x) gives 3 values: …
1
vote
0 answers

need help figuring out why Im getting an exception on axlPort.getPhone(axlParams) call

I am attempting to run the axl demo shown at 'https://developer.cisco.com/docs/axl/#!javajax-ws-quickstart' I am a newbie to axl, eclipse, and java, and just trying to get my toes wet. I have followed the instructions listed and the project only…
wolf8963
  • 61
  • 2
  • 7
1
2 3 4