- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2020 02:18 PM - edited 07-14-2020 02:52 PM
When I try to use the example from
https://developer.cisco.com/docs/axl/#!hello-world-with-curl
passing a user name and password I get an empty 559 response., with a message of none.
<div id="content">
<div id="content-header">HTTP Status 599 - </div>
<p>
<b> type: </b> Status report </p>
<p>
<b>message: </b>
</p>
<p>
<b>description: </b> http.599 </p>
</div>
Curl Command
curl -k -u [user]:[password] -H "Content-type: text/xml;" "SOAPAction:CUCM:DB ver=11.5" -d @request.xml https://ddscucmpub:8443/axl/
(
Solved! Go to Solution.
- Labels:
-
AXL
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2020 04:32 PM
The HTTP 599 error indicates that you are requesting an AXL version that is not supported by the CUCM (see details about how CUCM and AXL versions are related).
You will need to update '8.5' in both the xmlns:ns namespace URL in the XML document, as well as in the SOAPAction header in the command to reflect the target version - e.g. 11.5 for CUCM v11.5.
Some other issues in the sample XML have also now been fixed/published to get it working with CUCM 12.5 (which is a bit stricter when parsing the request XML), please re-copy the XML sample as needed.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2020 04:32 PM
The HTTP 599 error indicates that you are requesting an AXL version that is not supported by the CUCM (see details about how CUCM and AXL versions are related).
You will need to update '8.5' in both the xmlns:ns namespace URL in the XML document, as well as in the SOAPAction header in the command to reflect the target version - e.g. 11.5 for CUCM v11.5.
Some other issues in the sample XML have also now been fixed/published to get it working with CUCM 12.5 (which is a bit stricter when parsing the request XML), please re-copy the XML sample as needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2020 04:36 PM
I got it to work with this
