cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
619
Views
1
Helpful
2
Replies

AXL - Sip Profile - Allow RR/RS bandwidth modifier (RFC 3556)

fabien.bonic
Level 5
Level 5

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

2 Replies 2

npetrele
Cisco Employee
Cisco Employee

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>

Hi,

Thank you for the answer. Will this field be added in the regular AXL in a future version ?

Thanks,

Fabien

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: