09-20-2016 01:45 AM
Hi,
I want to update the value of "load server" to an ip address which is under the "Product Specific Configuration Layout Help" section. I started from here: https://developer.cisco.com/site/sxml/downloads/sample-app/ and https://developer.cisco.com/site/axl/learn/how-to/axl-java-sample-application.gsp. And I couldn't find the functions I need. I also wanted to write a new API but I'm confused about how to start...
Looking forward to you help, thank you~
Thanks,
Jialing
Solved! Go to Solution.
09-20-2016 02:00 PM
The settings in the 'Product Specific Configuration' area are stored in the <vendorConfig> element, e.g. when retrieved via <getPhone> or updated via <updatePhone>.
It can be tricky to update values in this element, as the key values and value types can vary by device type, and consist of 'free form' XML lists and elements under <vendorConfig>. Typically you will want to read the existing set of XML under <vendorConfig> via <getPHone>, add in the new key element and value you want to set (if it is not already present), then send it back in via <updatePhone>.
09-20-2016 02:00 PM
The settings in the 'Product Specific Configuration' area are stored in the <vendorConfig> element, e.g. when retrieved via <getPhone> or updated via <updatePhone>.
It can be tricky to update values in this element, as the key values and value types can vary by device type, and consist of 'free form' XML lists and elements under <vendorConfig>. Typically you will want to read the existing set of XML under <vendorConfig> via <getPHone>, add in the new key element and value you want to set (if it is not already present), then send it back in via <updatePhone>.
08-20-2021 08:54 AM
Hi David, can you advise how I may update the 'SSH Access' on the 8851/7965 phones? Can it be done via the vendorConfig?
Thanks
08-20-2021 10:12 AM
Yep!
If using Python, this sample script/project may be helpful in understanding how to use Zeep with vendorConfig: https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_add_Phone_vendorConfig.py
08-20-2021 10:46 AM
Great! Thanks David -- this is helpful.
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