07-22-2015 05:39 AM
Hi,
I need to set the checkbox "Allow RR/RS bandwidth modifier (RFC 3556)" using the AXL10 on a CUCM10.
The XSD seems not to have such paramater and when I modify this field on the CUCM GUI, the getSipProfile request return exactly the same result...
What is the AXL field for "Allow RR/RS bandwidth modifier (RFC 3556)" and how to set or get its value using AXL10 ? The problem is also on the AXL10.5...
Thanks,
Fabien
07-22-2015 09:28 AM
I don't see it in the regular AXL API, but you can use executeSQLQuery and executeSQLUpdate. For example, this inspects the value...
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.5">
<soapenv:Header/>
<soapenv:Body>
<ns:executeSQLQuery sequence="">
<sql>select allowrrandrsbandwidthmodifier from sipprofile where name="Test Standard SIP Profile"</sql>
</ns:executeSQLQuery>
</soapenv:Body>
</soapenv:Envelope>
...and this sets the value to "t" or "f"...
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/10.5">
<soapenv:Header/>
<soapenv:Body>
<ns:executeSQLUpdate sequence="?">
<sql>update sipprofile set allowrrandrsbandwidthmodifier="t" where name="Test Standard SIP Profile"</sql>
</ns:executeSQLUpdate>
</soapenv:Body>
</soapenv:Envelope>
08-03-2015 06:42 AM
Hi,
Thank you for the answer. Will this field be added in the regular AXL in a future version ?
Thanks,
Fabien
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