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
1
vote
0 answers

import javax.xml.ws.BindingProvider; failing

I am a newbie to eclipse, java, and axl. I am trying to do the demo project shown on this vid: https://d1nmyq4gcgsfi5.cloudfront.net/images/axl/axl-vid-outline.mp4 you can see some of the code starting at min 9:03 I think this link is also part -…
wolf8963
  • 61
  • 2
  • 7
1
vote
1 answer

zeep.exceptions.XMLSyntaxError:The root element found is html

I am trying to use Zeep to send SOAP request to a Cisco CM server to make MACD operation however getting the following error: zeep.exceptions.XMLSyntaxError: The XML returned by the server does not contain a valid…
Veb
  • 53
  • 1
  • 10
1
vote
1 answer

Soap xml response validate with xsd file

using https://www.freeformatter.com/xml-validator-xsd.html If i take soapenf completely out of the mix here in the response and the schema, it works fine, but would like to do both. (fyi i would like to point out this wsdl and xsd is not exposed on…
MichaelEvanchik
  • 1,748
  • 1
  • 13
  • 23
1
vote
1 answer

SOAP/AXL Request to CUCM Fails with Node.js

All, Thanks for taking a moment to check out this question. Any help is appreciated as I'm a beginner. I am trying to work with Node.js to make a SOAP/AXL call over to a v11.5 Cisco Callmanager. I have copied the code from this person blog which has…
Andrew Petersen
  • 163
  • 1
  • 9
1
vote
3 answers

Java: Save Object for Later Use

Pulling the data from the server (using SOAP methods) is slow and I would like that the program loads with the object already present. I tried the code I found here, but it raises a java.io.NotSerializableException Now I need the data to remain…
Jacob
  • 11
  • 5
1
vote
1 answer

To find the location of a datapoint without database schema documentation

I program for a Linux based appliance (Cisco CUCM) that uses Informix and am working with documentation that, sadly, isn't very helpful (https://developer.cisco.com/media/UCM10.5DataDictionary/UCM10.5DataDictionary.htm) in this particular…
Kimomaru
  • 993
  • 4
  • 14
  • 30
1
vote
3 answers

Cisco AXL updatePhone using python3, suds, SOAP Requests

I now got a few SOAP request against my UCM 11.5 test environment working. But i'm struggeling with this one: Update Phone. import ssl from suds.client import Client ssl._create_default_https_context = ssl._create_unverified_context username =…
1
vote
0 answers

Exception in thread "main" javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present

We are trying the sample application in Cisco DevNet website, which demonstrates how to create an Extension Mobility web service consumer client. We have followed the instructions and imported the certification to the keystore, but it still won't…
veronfort
  • 11
  • 2
1
vote
1 answer

Cisco Unified Call Manager (CUCM) AXL API throwing error when used in C#.net project

I am trying to run a SQL query through AXL API in CUCM sandbox environment from my application and get back the SQL query result. Can anyone please let me know how we can do it through an example. I have attempted to do this, but getting an error…
1
vote
1 answer

How to use GetLineReq in AXL Java Client using JAX-WS

What I'm trying to do is to obtain a Directory Number from CUCM, using the AXL API from Cisco. Here's the relevant Code: private void getNumber(){ AXLAPIService axlService = new AXLAPIService(); AXLPort axlPort = axlService.getAXLPort(); …
Michael
  • 135
  • 2
  • 9
1
vote
1 answer

PHP SOAP Array Evaluation

I'm working on the following what I hope would be a simple script. I'm using the Cisco AXL WSDL to reach out to my Cisco CUPS server run a SQL query, loop through the results and then feed that back into another step to update the returned rows to a…
rsaturns
  • 181
  • 1
  • 18
1
vote
0 answers

Cisco visual message waiting indicator (VMWI or MVI) without SIP

How can I programmatically illuminate Cisco IP Phones Visual message waiting indicator (VMWI or MWI)? P.S.: I have a similar question Cisco visual message waiting indicator ( VMWI or MVI ) but this is different since I do not look for SIP message…
Hippias Minor
  • 1,917
  • 2
  • 21
  • 46
1
vote
1 answer

Writing a SOAP function in php

I have a soap function called get_file_list that I would like to write for PHP however I can not get it to work. It has three parameters, 1) start time, 2) end time, and 3) boolean. This is what the sample code looks like in soap;
Kimomaru
  • 993
  • 4
  • 14
  • 30
0
votes
1 answer

C# API Request starts with a Backslash

I'm fairly new to c# and programming. I made a little program for my company to automatically provide new telefons and patterns. It worked fine until the phone extension/pattern got changed to start with \+43. Before the change it was just the…
Philipp
  • 3
  • 2
0
votes
1 answer

Apache HttpClient, Cisco VoIP Phone - POST CGI Execute CiscoIpPhoneError 1

For sending a message to a Cisco VoIP Phone, I use Apache HttpClient: HttpPost httpPost = new HttpPost(url); httpPost.setEntity(new StringEntity(body, ContentType.TEXT_XML)); httpPost.addHeader(new…
neblaz
  • 683
  • 10
  • 32