<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep in Management</title>
    <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3859305#M3059</link>
    <description>&lt;P&gt;here is the script I have been using&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/lpdescamps/Cisco_CUCM/blob/master/Basic/add/add_Phone.py" target="_self"&gt;script&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the python module&amp;nbsp;&lt;SPAN&gt;lxml &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample of the code&lt;/P&gt;&lt;PRE&gt;xmlstring = '&amp;lt;items&amp;gt;' \
'&amp;lt;webAccess&amp;gt;2&amp;lt;/webAccess&amp;gt;' \
'&amp;lt;/items&amp;gt;'
tree = ET.fromstring(xmlstring)&lt;/PRE&gt;&lt;PRE&gt;client.addPhone(phone=
        {
        'vendorConfig': tree
		}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 May 2019 12:06:17 GMT</pubDate>
    <dc:creator>lp.descamps</dc:creator>
    <dc:date>2019-05-20T12:06:17Z</dc:date>
    <item>
      <title>addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep</title>
      <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3831654#M3037</link>
      <description>&lt;P&gt;I'm trying to create a phone using python/zeep&amp;nbsp;but i'm&amp;nbsp;stuck for&amp;nbsp;&lt;SPAN&gt;Product Specific Configuration Layout which is the vendorConfig.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How would you create the RoomName?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2019 18:13:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3831654#M3037</guid>
      <dc:creator>lp.descamps</dc:creator>
      <dc:date>2019-04-03T18:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep</title>
      <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3856241#M3048</link>
      <description>Have a look at my post here &lt;A href="https://community.cisco.com/t5/management/axl-vendorconfig/m-p/3590596/highlight/true#M2555" target="_blank"&gt;https://community.cisco.com/t5/management/axl-vendorconfig/m-p/3590596/highlight/true#M2555&lt;/A&gt;, it might be of some help!</description>
      <pubDate>Tue, 14 May 2019 19:36:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3856241#M3048</guid>
      <dc:creator>dhook</dc:creator>
      <dc:date>2019-05-14T19:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep</title>
      <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3858647#M3057</link>
      <description>&lt;P&gt;The value you'll send it to vendorConfig will be an XML string comprised of the settings you want to control.&amp;nbsp; To get the format for a specific device (I assume the RoomName is one of those elements), one way is to create the device using the CUCM admin UI setting the variable as desired, and then use something like soapUI to perform &amp;lt;getPhone&amp;gt; - you can them examine the &amp;lt;vendorConfig&amp;gt; element as a template...&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 22:28:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3858647#M3057</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2019-05-17T22:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep</title>
      <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3859305#M3059</link>
      <description>&lt;P&gt;here is the script I have been using&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/lpdescamps/Cisco_CUCM/blob/master/Basic/add/add_Phone.py" target="_self"&gt;script&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the python module&amp;nbsp;&lt;SPAN&gt;lxml &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample of the code&lt;/P&gt;&lt;PRE&gt;xmlstring = '&amp;lt;items&amp;gt;' \
'&amp;lt;webAccess&amp;gt;2&amp;lt;/webAccess&amp;gt;' \
'&amp;lt;/items&amp;gt;'
tree = ET.fromstring(xmlstring)&lt;/PRE&gt;&lt;PRE&gt;client.addPhone(phone=
        {
        'vendorConfig': tree
		}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 12:06:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/3859305#M3059</guid>
      <dc:creator>lp.descamps</dc:creator>
      <dc:date>2019-05-20T12:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: addPhone vendorConfig AXL for cisco telepresence sx20 using python/Zeep</title>
      <link>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/4182811#M3524</link>
      <description>&lt;P&gt;Have you upgraded to 12.5 and if so, having issues with vendorConfig?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 15:03:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/addphone-vendorconfig-axl-for-cisco-telepresence-sx20-using/m-p/4182811#M3524</guid>
      <dc:creator>Mike Hagans</dc:creator>
      <dc:date>2020-11-12T15:03:17Z</dc:date>
    </item>
  </channel>
</rss>

