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.
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.
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.
07-14-2020 04:36 PM
I got it to work with this
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide