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
0
votes
1 answer

Cisco AXL Error Codes - Access to documentation, database table, etc

I found some AXL Error Codes, 5000 - 5007 (5006 missing), but there have to be more. For example I also received a -239. Is there a documentation on the AXL Error Codes? Perhaps there is a database table containing the AXL Error Codes. Like the…
neblaz
  • 683
  • 10
  • 32
0
votes
1 answer

CUCM axl api returns system.object when i try to query using ExecuteQueryReq

When i try to return data from CUCM AXL api, using the code below ExecuteSQLQueryReq query = new ExecuteSQLQueryReq(); query.sql = "select * from systables "; string[] model = null; //get tables try { …
rizu
  • 1,047
  • 1
  • 12
  • 21
0
votes
2 answers

Cisco AXL - Execute SQL Query, parse response

AXL 12.5, Apache CXF 3.3.6, OpenJDK 14, Spring Boot 2.3.0, executing a SQL query String sqlStmt = "SELECT name FROM typeuserlocale"; ExecuteSQLQueryReq executeSQLQueryReq = new…
neblaz
  • 683
  • 10
  • 32
0
votes
0 answers

How to write a if statement based on a empty stdClass() from SOAP AXL returned?

I am a newbie to programming and I am trying to find a solution for a response from a SOAP Server. I am trying to get a user from a server and if the user ID is available it returns its user id but when no user is found it gives something like…
0
votes
1 answer

unable to post to AXL endpoint

My goal is to be able to post and retrieve from the endpoint which uses a SOAP based API structure of my project I generated a client with the WSDL file to target cucm 11.5, then I followed the example on github by creating all the classes and…
rizu
  • 1,047
  • 1
  • 12
  • 21
0
votes
2 answers

AXL Java UpdatePhoneReq for CUCM 10.5 executes with no errors but doesnt change the phone

Newbie to eclipse - AXL - Java I am inching my way forward to learn the above. using JavaSE 1.8, and eclipse 4.13.0, to interact with a lab call manager running v 10.5, and by following and modifying a demo, Ive been able to successfully run a…
wolf8963
  • 61
  • 2
  • 7
0
votes
1 answer

How to query All devices with status None in axl?

Currently i am trying to use AXL to query Phone status. I am building python web application to query status of phone in call manager.
PRASANNA SARAF
  • 333
  • 1
  • 4
  • 17
0
votes
1 answer

Creating SOAP request via Zeep with variable number of XML tags

All, I am using Zeep to connect to CUCM to perform bulk AXL transactions. Some of the objects that I need to modify accept a variable number of XML tags. For example: I want to add an entity(calling search space), which could have a variable number…
adamz88
  • 319
  • 3
  • 12
0
votes
1 answer

updateUser in Cisco CUCM 11.5 via AXL in C#

I'm new to C# and AXL, so I'm trying to update the End User PIN via AXL in C# without success. Everything what I have found is this :
mpro
  • 1
  • 1
0
votes
3 answers

AXL API - Extremely long processing time of CS file

Just need a point in the right direction with this one. I've created the Cisco Unified Call Manager API via the instructions provided by Cisco, the API for CUCM is called AXL. It's currently in my C# WPF project and works just fine (i've retrieved…
Erik
  • 91
  • 12
0
votes
1 answer

Sending Push commands to IP Phone

Can anyone help with the below, trying to get the background screenshot of a Cisco IP Phone using the Execute command /CGI/Screenshot Device: Cisco IP Phone 7962G System version: 11.0.1.22900-14 Device is associated to the End User Auth URL =…
Luke Toss
  • 356
  • 5
  • 23
0
votes
1 answer

SOAP - ServerSOAPFaultException is thrown instead of appropriate @WebFault exception

I have generated POJO's from WSDL schema, but errors don't seem to be mapped to appropriate @Webfault exception. Instead of getting AXLError I receive ServerSOAPFaultException. Generated exception file: package com.cisco.axlapiservice; import…
eugen-fried
  • 2,111
  • 3
  • 27
  • 48
0
votes
2 answers

Selective C# code generation (SOAP)

I'm using cisco unified communications manager API (AXL) which is very huge. Generated God object with 350k+ lines of code takes 30+ seconds to initialize in runtime. I used to cut redundant methods and properties and it really helps. I'm looking…
Fastbrainx
  • 89
  • 7
0
votes
2 answers

addRoutePattern AXL error

When calling the addRoutePattern AXL API I get back the following SOAP response: ENUM for TRUE not found in TypeStatus I'm not sure what it's referring to as TypeStatus isn't a Key mentioned in the API documentation.
rsaturns
  • 181
  • 1
  • 18
0
votes
1 answer

PHP Multidimensional Array Access - Five Dimensions

For reference on why I'm doing this, I'm trying to use a SOAP / AXL WSDL API. That portion I have working the callenge I have now is building the array construct in such a way I can access it. For reference the API requirements are here. The…
rsaturns
  • 181
  • 1
  • 18