cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
697
Views
2
Helpful
3
Replies

CUCM AXL Service Parameter Update

Nathan Gageby
Level 4
Level 4

I am attempting to update a Service Parameter in CUCM and am not getting the desired result.  I have consulted a few sources to assist in my attempt.  Based on the Schema I can use the uuid and value to update the setting. 

NathanGageby_0-1682016528991.png

 

I have pasted a sample of the current state of the setting below.

 

{
'processNodeName': {
'_value_1': 'EnterpriseWideData',
'uuid': '{00000000-1111-0000-0000-000000000000}'
},
'name': 'TimerT302_msec',
'service': 'Cisco CallManager',
'value': '15000',
'valueType': None,
'uuid': '{A23553DC-4494-47A0-B726-CE920525DE63}'
}

When I send the update request I am using something along the lines of what I have pasted here.

ccmConnection.updateServiceParameter(uuid=item['uuid'],value = '6000')

The response appears to be normal without any errors however the setting does not show as updated. Any assistance or guidance would be fantastic. Most of my setup is based on information found here.

https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_update_Service_Parameter.py

Have a great day!

 

 

 

 

 

3 Replies 3

b.winter
VIP
VIP

Hi,
my SOAP-Body looks like this:

   <soapenv:Body>
      <ns:updateServiceParameter sequence="?">
         <!--You have a CHOICE of the next 2 items at this level-->
         <!--<uuid>?</uuid> -->
         <processNodeName uuid="{00000000-1111-0000-0000-000000000000}">EnterpriseWideData</processNodeName>
         <service>Cisco CallManager</service>
         <name>TimerT302_msec</name>
         <value>6000</value>
      </ns:updateServiceParameter>
   </soapenv:Body>

Maybe this helps.

Helped me - thanks!

b.winter
VIP
VIP

@Nathan Gageby any update here? or just a dead post?