04-20-2023 11:52 AM
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.
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!
04-20-2023 11:33 PM
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.
06-03-2024 11:03 AM
Helped me - thanks!
05-02-2023 11:43 PM
@Nathan Gageby any update here? or just a dead post?
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