<?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: CUCM AXL addGateway - problems adding vendorConfig in Management</title>
    <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137151#M3467</link>
    <description>&lt;P&gt;One last detail. This doesn't seem to negatively impact anything, but the contents of the XML column in the database look different right after I insert it with python than they do after I update it from the GUI. Here is what it looks like immediately after insert:&lt;/P&gt;&lt;PRE&gt;admin:run sql ccm select xml from mgcp where domainname = 'XX.test.local'
xml                                                                                                                                                                                                                                             
=========================================================================================================================================================================================================================================================
&amp;lt;xml-fragment xmlns:ns0="http://www.cisco.com/AXL/API/8.0" xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
  &amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;
  &amp;lt;T38FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;
  &amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;
&amp;lt;/xml-fragment&amp;gt;&lt;/PRE&gt;&lt;P&gt;And here is what it looks like after an update from the GUI:&lt;/P&gt;&lt;PRE&gt;admin:run sql ccm select xml from mgcp where domainname = 'XX.test.local'
xml                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
===========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================
&amp;lt;globalISDNSwitchType&amp;gt;4ESS&amp;lt;/globalISDNSwitchType&amp;gt;&amp;lt;switchBack&amp;gt;Graceful&amp;lt;/switchBack&amp;gt;&amp;lt;switchBackDelay&amp;gt;10&amp;lt;/switchBackDelay&amp;gt;&amp;lt;switchBackSchedule&amp;gt;12:00&amp;lt;/switchBackSchedule&amp;gt;&amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;&amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;&amp;lt;CiscoFaxRelay&amp;gt;Disable&amp;lt;/CiscoFaxRelay&amp;gt;&amp;lt;T38FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;&amp;lt;rtpPackageCapability&amp;gt;Enable&amp;lt;/rtpPackageCapability&amp;gt;&amp;lt;mtPackageCapability&amp;gt;Disable&amp;lt;/mtPackageCapability&amp;gt;&amp;lt;resPackageCapability&amp;gt;Disable&amp;lt;/resPackageCapability&amp;gt;&amp;lt;prePackageCapability&amp;gt;Enable&amp;lt;/prePackageCapability&amp;gt;&amp;lt;sstPackageCapability&amp;gt;Enable&amp;lt;/sstPackageCapability&amp;gt;&amp;lt;rtpUnreachableOnOff&amp;gt;Enable&amp;lt;/rtpUnreachableOnOff&amp;gt;&amp;lt;rtpUnreachableTimeout&amp;gt;1000&amp;lt;/rtpUnreachableTimeout&amp;gt;&amp;lt;rtcpReportInterval&amp;gt;0&amp;lt;/rtcpReportInterval&amp;gt;&amp;lt;simpleSdpEnable&amp;gt;Enable&amp;lt;/simpleSdpEnable&amp;gt;&lt;/PRE&gt;&lt;P&gt;It doesn't appear to make a difference at the moment, but this is just a lab system where I will never end up registering a real gateway.&lt;/P&gt;</description>
    <pubDate>Mon, 17 Aug 2020 22:29:44 GMT</pubDate>
    <dc:creator>Elliot Dierksen</dc:creator>
    <dc:date>2020-08-17T22:29:44Z</dc:date>
    <item>
      <title>CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4136057#M3463</link>
      <description>&lt;P&gt;I am able to add a gateway through AXL with python, but I am unable to get vendorConfig XML to get saved to the gateway config. Here is what the python fragment looks like when I build it.&lt;/P&gt;&lt;PRE&gt;                XML = "&amp;lt;_value_1&amp;gt;&amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;&amp;lt;T3
8FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;&amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;&amp;lt;/_value_1&amp;gt;"

                tree = ET.fromstring(XML)

                gateway = {
                'domainName': 'XX.test.local',
                'description': 'XX gateway',
                'product': 'Cisco ISR 4321',
                'protocol': 'MGCP',
                'callManagerGroupName': 'Default',
                'units': {
                'unit': [],
                'vendorConfig': tree
                }
                }&lt;/PRE&gt;&lt;P&gt;It adds correctly, and I get this back.&lt;/P&gt;&lt;PRE&gt;{'domainName': 'XX.test.local', 'description': 'XX gateway', 'product': 'Cisco ISR 4321', 'protocol': 'MGCP', 'callManagerGroupName': 'Default', 'units': {'unit': [{'index': '0', 'product': 'ISR-2NIM-MBRD', 'subunits': {'subunit': [{'index': '1', 'product': 'NIM-1MFT-T1E1-E1', 'beginPort': '0'}]}}], 'vendorConfig': &amp;lt;Element 'vendorConfig' at 0x80a440350&amp;gt;}} {
    'return': '{8E7587A3-269D-2D8A-5B98-5CC0ACD11B38}',
    'sequence': None
}&lt;/PRE&gt;&lt;P&gt;but when I query it with getGateway, vendorConfig isn't set.&lt;/P&gt;&lt;PRE&gt;{
    'return': {
        'gateway': {
            'domainName': 'XX.test.local',
            'description': 'XX gateway',
            'product': 'Cisco ISR 4321',
            'protocol': 'MGCP',
            'callManagerGroupName': {
                '_value_1': 'Default',
                'uuid': '{D13C4201-7802-11D3-BDF0-00108302EAD1}'
            },
            'units': {
                'unit': [
                    {
                        'index': 0,
                        'product': 'ISR-2NIM-MBRD',
                        'subunits': {
                            'subunit': [
                                {
                                    'index': 1,
                                    'product': 'NIM-1MFT-T1E1-E1',
                                    'beginPort': 0
                                }
                            ]
                        }
                    }
                ]
            },
            'scratch': None,
            'vendorConfig': None,
            'versionStamp': '0000000000-c7a6c673-7479-46b0-839e-014d3d093963',
            'loadInformation': None,
            'uuid': '{873D02F6-5A74-4FA8-6DA7-115ACF8E9BD3}'
        }
    },
    'sequence': None
}&lt;/PRE&gt;&lt;P&gt;After I update the gateway through the GUI, it looks like this.&lt;/P&gt;&lt;PRE&gt;{
    'return': {
        'gateway': {
            'domainName': 'XX.test.local',
            'description': 'XX gateway',
            'product': 'Cisco ISR 4321',
            'protocol': 'MGCP',
            'callManagerGroupName': {
                '_value_1': 'Default',
                'uuid': '{D13C4201-7802-11D3-BDF0-00108302EAD1}'
            },
            'units': {
                'unit': [
                    {
                        'index': 0,
                        'product': 'ISR-2NIM-MBRD',
                        'subunits': {
                            'subunit': [
                                {
                                    'index': 1,
                                    'product': 'NIM-1MFT-T1E1-E1',
                                    'beginPort': 0
                                }
                            ]
                        }
                    }
                ]
            },
            'scratch': None,
            'vendorConfig': {
                '_value_1': [
                    &amp;lt;Element globalISDNSwitchType at 0x80ea09820&amp;gt;,
                    &amp;lt;Element switchBack at 0x80ea097d0&amp;gt;,
                    &amp;lt;Element switchBackDelay at 0x80ea0c320&amp;gt;,
                    &amp;lt;Element switchBackSchedule at 0x80ea0c410&amp;gt;,
                    &amp;lt;Element DtmfRelay at 0x80ea0c460&amp;gt;,
                    &amp;lt;Element ModemPassthrough at 0x80ea0c4b0&amp;gt;,
                    &amp;lt;Element CiscoFaxRelay at 0x80ea0c500&amp;gt;,
                    &amp;lt;Element T38FaxRelay at 0x80ea0c550&amp;gt;,
                    &amp;lt;Element rtpPackageCapability at 0x80ea0c5a0&amp;gt;,
                    &amp;lt;Element mtPackageCapability at 0x80ea0c5f0&amp;gt;,
                    &amp;lt;Element resPackageCapability at 0x80ea0c640&amp;gt;,
                    &amp;lt;Element prePackageCapability at 0x80ea0c690&amp;gt;,
                    &amp;lt;Element sstPackageCapability at 0x80ea0c6e0&amp;gt;,
                    &amp;lt;Element rtpUnreachableOnOff at 0x80ea0c730&amp;gt;,
                    &amp;lt;Element rtpUnreachableTimeout at 0x80ea0c780&amp;gt;,
                    &amp;lt;Element rtcpReportInterval at 0x80ea0c7d0&amp;gt;,
                    &amp;lt;Element simpleSdpEnable at 0x80ea0c820&amp;gt;
                ]
            },
            'versionStamp': '1597420698-715c776e-736d-40e2-bfa6-cb9013092827',
            'loadInformation': None,
            'uuid': '{873D02F6-5A74-4FA8-6DA7-115ACF8E9BD3}'
        }
    },
    'sequence': None
}&lt;/PRE&gt;&lt;P&gt;I suspect that I am not using the right XML tag when I build the tree value. I have tried XML, vendorConfig, and _value_1 but none of those get stored correctly. What should I use?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2020 16:08:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4136057#M3463</guid>
      <dc:creator>Elliot Dierksen</dc:creator>
      <dc:date>2020-08-14T16:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137101#M3464</link>
      <description>&lt;P&gt;I was able to get this working for &amp;lt;addPhone&amp;gt; using Python+Zeep for CUCM 12.5, see the 'axl_add_Phone_vendorConfig.py` sample in this project: &lt;A href="https://github.com/CiscoDevNet/axl-python-zeep-samples" target="_blank"&gt;CiscoDevNet/axl-python-zeep-samples&lt;/A&gt;&lt;/P&gt;
&lt;PRE&gt;# Create an Element object from scratch with tag 'videoCapability' and text '0'
videoCapability = etree.Element( 'videoCapability' )
videoCapability.text = '0'

# The some config item Elements must be the child of a 'section' Element, e.g.:
#     &amp;lt;desktopClient&amp;gt;
#         &amp;lt;extendAndConnectCapability&amp;gt;0&amp;lt;/extendAndConnectCapability&amp;gt;
#     &amp;lt;/desktopClient&amp;gt;
desktopClient = etree.Element( 'desktopClient' )
extendAndConnectCapability = etree.SubElement( desktopClient, 'extendAndConnectCapability' )
extendAndConnectCapability.text = '0'

problemReportServerUrl = etree.SubElement( desktopClient, 'problemReportServerUrl' )
problemReportServerUrl.text = 'https://report.example.com'

# Append each top-level element to an array
vendorConfig = []
vendorConfig.append( videoCapability )
vendorConfig.append( desktopClient )

# Create a Zeep xsd type object of type XVendorConfig from the client object
xvcType = client.get_type( 'ns0:XVendorConfig' )

# Use the XVendorConfig type object to create a vendorConfig object
#   using the array of vendorConfig elements from above, and set as
#   phone.vendorConfig
phone[ 'vendorConfig' ] = xvcType( vendorConfig )&lt;/PRE&gt;
&lt;P&gt;I took a more roundabout approach, though comparing the two, possibly the key is that vendorConfig needs to be an array of separate elements, whereas your example is a simple single element.&amp;nbsp; Possibly just wrapping that single element in an array might do it...&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 20:34:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137101#M3464</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2020-08-17T20:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137143#M3465</link>
      <description>&lt;P&gt;I'll have to beat on that a little more. That is more elegant that what I have done as a work-around. I made a brief try and copying what you did, but it didn't work right away.&lt;/P&gt;&lt;PRE&gt;gwname = input("Gateway Name: ")
gateway = {
'domainName': gwname,
}
sql = 'update mgcp set xml = \'&amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;&amp;lt;T38FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;&amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;\' where domainname = \'' + gwname + '\''
print(sql)

axl, history = axl_bind(server, acct, pw)
# Attempt AXL call
try:
    reply = axl.executeSQLUpdate(sql = sql)
# Check for error
# Return values based on request response
except Fault as err:
    if 'HTTP Status 401' in ET.tostring(history.last_received['envelope']).decode():
        print("Server Credential Error")
    else:
        print(err)
else:
    if reply["return"] is None:
        print("Unknown Result - Double Check Values")
    else:
        print("Update Success")

print(reply)&lt;/PRE&gt;&lt;P&gt;This is the error I got. Again, I just made a quick stab at it now. I am going to work on it some more since this method seems cleaner.&lt;/P&gt;&lt;PRE&gt;Traceback (most recent call last):
  File "gw_ins.py", line 87, in &amp;lt;module&amp;gt;
    reply = axl.addGateway( gateway )
  File "/usr/local/lib/python3.7/site-packages/zeep/proxy.py", line 45, in __call__
    kwargs,
  File "/usr/local/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py", line 119, in send
    operation, args, kwargs, client=client, options=options
  File "/usr/local/lib/python3.7/site-packages/zeep/wsdl/bindings/soap.py", line 68, in _create
    serialized = operation_obj.create(*args, **kwargs)
  File "/usr/local/lib/python3.7/site-packages/zeep/wsdl/definitions.py", line 215, in create
    return self.input.serialize(*args, **kwargs)
  File "/usr/local/lib/python3.7/site-packages/zeep/wsdl/messages/soap.py", line 74, in serialize
    self.body.render(body, body_value)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 231, in render
    self._render_value_item(parent, value, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 255, in _render_value_item
    return self.type.render(node, value, None, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/types/complex.py", line 279, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/indicators.py", line 242, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 231, in render
    self._render_value_item(parent, value, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 255, in _render_value_item
    return self.type.render(node, value, None, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/types/complex.py", line 279, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/indicators.py", line 242, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 231, in render
    self._render_value_item(parent, value, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/element.py", line 255, in _render_value_item
    return self.type.render(node, value, None, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/types/complex.py", line 279, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/indicators.py", line 242, in render
    element.render(parent, element_value, child_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/any.py", line 126, in render
    self.validate(value, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/any.py", line 181, in validate
    self._validate_item(val, render_path)
  File "/usr/local/lib/python3.7/site-packages/zeep/xsd/elements/any.py", line 216, in _validate_item
    "See http://docs.python-zeep.org/en/master/datastructures.html"
TypeError: Any element received object of type 'Element', expected lxml.etree._Element or builtins.dict or zeep.xsd.valueobjects.AnyObject
See http://docs.python-zeep.org/en/master/datastructures.html#any-objects for more information&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Here is what I was trying to do&lt;/P&gt;&lt;PRE&gt;ModemPassthrough = ET.Element( 'ModemPassthrough' )
ModemPassthrough.text = 'Disable'
T38FaxRelay = ET.Element( 'T38FaxRelay' )
T38FaxRelay .text = 'Enable'
DtmfRelay = ET.Element( 'DtmfRelay' )
DtmfRelay .text = 'NTE-CA'

# Append each top-level element to an array
vendorConfig = []
vendorConfig.append( ModemPassthrough )
vendorConfig.append( T38FaxRelay )
vendorConfig.append( DtmfRelay )

gateway[ 'vendorConfig' ] = xvcType( vendorConfig )&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Aug 2020 21:56:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137143#M3465</guid>
      <dc:creator>Elliot Dierksen</dc:creator>
      <dc:date>2020-08-17T21:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137149#M3466</link>
      <description>&lt;P&gt;I figured it out. I was using:&lt;/P&gt;&lt;PRE&gt;from xml.etree import ElementTree as ET&lt;/PRE&gt;&lt;P&gt;when I should have been using this from your code:&lt;/P&gt;&lt;PRE&gt;from lxml import etree&lt;/PRE&gt;&lt;P&gt;Now it works with this section:&lt;/P&gt;&lt;PRE&gt;ModemPassthrough = etree.Element( 'ModemPassthrough' )
ModemPassthrough.text = 'Disable'
T38FaxRelay = etree.Element( 'T38FaxRelay' )
T38FaxRelay .text = 'Enable'
DtmfRelay = etree.Element( 'DtmfRelay' )
DtmfRelay .text = 'NTE-CA'

# Append each top-level element to an array
vendorConfig = []
vendorConfig.append( ModemPassthrough )
vendorConfig.append( T38FaxRelay )
vendorConfig.append( DtmfRelay )&lt;/PRE&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 22:21:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137149#M3466</guid>
      <dc:creator>Elliot Dierksen</dc:creator>
      <dc:date>2020-08-17T22:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137151#M3467</link>
      <description>&lt;P&gt;One last detail. This doesn't seem to negatively impact anything, but the contents of the XML column in the database look different right after I insert it with python than they do after I update it from the GUI. Here is what it looks like immediately after insert:&lt;/P&gt;&lt;PRE&gt;admin:run sql ccm select xml from mgcp where domainname = 'XX.test.local'
xml                                                                                                                                                                                                                                             
=========================================================================================================================================================================================================================================================
&amp;lt;xml-fragment xmlns:ns0="http://www.cisco.com/AXL/API/8.0" xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
  &amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;
  &amp;lt;T38FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;
  &amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;
&amp;lt;/xml-fragment&amp;gt;&lt;/PRE&gt;&lt;P&gt;And here is what it looks like after an update from the GUI:&lt;/P&gt;&lt;PRE&gt;admin:run sql ccm select xml from mgcp where domainname = 'XX.test.local'
xml                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
===========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================
&amp;lt;globalISDNSwitchType&amp;gt;4ESS&amp;lt;/globalISDNSwitchType&amp;gt;&amp;lt;switchBack&amp;gt;Graceful&amp;lt;/switchBack&amp;gt;&amp;lt;switchBackDelay&amp;gt;10&amp;lt;/switchBackDelay&amp;gt;&amp;lt;switchBackSchedule&amp;gt;12:00&amp;lt;/switchBackSchedule&amp;gt;&amp;lt;DtmfRelay&amp;gt;NTE-CA&amp;lt;/DtmfRelay&amp;gt;&amp;lt;ModemPassthrough&amp;gt;Disable&amp;lt;/ModemPassthrough&amp;gt;&amp;lt;CiscoFaxRelay&amp;gt;Disable&amp;lt;/CiscoFaxRelay&amp;gt;&amp;lt;T38FaxRelay&amp;gt;Enable&amp;lt;/T38FaxRelay&amp;gt;&amp;lt;rtpPackageCapability&amp;gt;Enable&amp;lt;/rtpPackageCapability&amp;gt;&amp;lt;mtPackageCapability&amp;gt;Disable&amp;lt;/mtPackageCapability&amp;gt;&amp;lt;resPackageCapability&amp;gt;Disable&amp;lt;/resPackageCapability&amp;gt;&amp;lt;prePackageCapability&amp;gt;Enable&amp;lt;/prePackageCapability&amp;gt;&amp;lt;sstPackageCapability&amp;gt;Enable&amp;lt;/sstPackageCapability&amp;gt;&amp;lt;rtpUnreachableOnOff&amp;gt;Enable&amp;lt;/rtpUnreachableOnOff&amp;gt;&amp;lt;rtpUnreachableTimeout&amp;gt;1000&amp;lt;/rtpUnreachableTimeout&amp;gt;&amp;lt;rtcpReportInterval&amp;gt;0&amp;lt;/rtcpReportInterval&amp;gt;&amp;lt;simpleSdpEnable&amp;gt;Enable&amp;lt;/simpleSdpEnable&amp;gt;&lt;/PRE&gt;&lt;P&gt;It doesn't appear to make a difference at the moment, but this is just a lab system where I will never end up registering a real gateway.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 22:29:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4137151#M3467</guid>
      <dc:creator>Elliot Dierksen</dc:creator>
      <dc:date>2020-08-17T22:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: CUCM AXL addGateway - problems adding vendorConfig</title>
      <link>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4139585#M3469</link>
      <description>&lt;P&gt;Couldn't reproduce your observations on 12.5, but did add some vendorConfig items in the axl_addGateway.py sample...&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 21:18:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/cucm-axl-addgateway-problems-adding-vendorconfig/m-p/4139585#M3469</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2020-08-21T21:18:33Z</dc:date>
    </item>
  </channel>
</rss>

