<?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: Need assistance fetching data returned by Zeep in Management</title>
    <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4627515#M3892</link>
    <description>&lt;P&gt;This sample shows using &amp;lt;executeSQLQuery&amp;gt; with Zeep: &lt;A href="https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_executeSQLQuery.py" target="_blank"&gt;https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_executeSQLQuery.py&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like your object parsing is a bit off here:&lt;/P&gt;
&lt;PRE&gt;print(template_query_resp['row']['return']['pkid'])&lt;/PRE&gt;
&lt;P&gt;where the order should be:&lt;/P&gt;
&lt;PRE&gt;['return']['row']&lt;/PRE&gt;
&lt;P&gt;However, 'row' is going to be a Python list (not a single row) of eTree elements, so you will want to iterate over the list to print your data row-by-row:&lt;/P&gt;
&lt;PRE&gt;for single_row in template_query_resp['return']['row']:
    print(single_row)&lt;/PRE&gt;
&lt;P&gt;BUT: note that since this is an adhoc query, Zeep cannot create a fully formed Python object out of the response, since the AXL schema can't know what columns you've asked for in the SQL.&amp;nbsp; As a result, a single_row is not a dictionary with a key named 'pkid', but rather a Python list of element objects, so you'll need to access columns by index and get the 'text' value.&amp;nbsp; 'pkid' is the zero-th column in the row, so:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;for single_row in template_query_resp['return']['row']:
    print(single_row[0].text)&lt;/PRE&gt;
&lt;P&gt;This is a bit easier if you restrict the number of returned fields to the minimum needed.&lt;BR /&gt;If you don't like extracting 'blind' by index, you can make a small function to look up the value by tag:&lt;/P&gt;
&lt;PRE&gt;def get_column(tag, row):
    element = list(filter(lambda x: x.tag == tag, row))
    return element[0].text if len(element) &amp;gt; 0 else None
for single_row in template_query_resp['return']['row']:&lt;BR /&gt;    print(get_column('pkid', single_row))
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jun 2022 23:17:35 GMT</pubDate>
    <dc:creator>dstaudt</dc:creator>
    <dc:date>2022-06-07T23:17:35Z</dc:date>
    <item>
      <title>Need assistance fetching data returned by Zeep</title>
      <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626024#M3889</link>
      <description>&lt;P&gt;Hello all&lt;/P&gt;&lt;P&gt;I'm attempting to fetch some information from a executeSQLQuery SOAP Command and I'm not able to return the text values in the xml elements that are returned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All I'm getting is output like this:&amp;nbsp;&amp;lt;Element pkid at 0x1cf373590c0&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Specifically I would need to return the text contained in&amp;nbsp;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;pkid&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;6adf790c-6913-7a69-5d42-efc5ddc10cdc&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;pkid&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt; or any other element nested in &amp;lt;return&amp;gt;&amp;lt;row&amp;gt;&amp;lt;/row&amp;gt;&amp;lt;/return&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the axlZeep.py listed on devnet as a reference and its using the following to return data from the getUser command:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;PRE&gt;try:
&amp;nbsp; &amp;nbsp; user_resp = service.getUser(**user_data)
except Fault as err:
&amp;nbsp; &amp;nbsp; print("\nZeep error: {0}".format(err))
else:
&amp;nbsp; &amp;nbsp; print("\ngetUser response:\n")
&amp;nbsp; &amp;nbsp; print(user_resp,"\n\n")
&amp;nbsp; &amp;nbsp; fname = user_resp['return']['user']['firstName']
&amp;nbsp; &amp;nbsp; lname = user_resp['return']['user']['lastName']
&amp;nbsp; &amp;nbsp; print( 'Parsed user info: {0} {1}'.format( fname, lname ) )&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;My Code is :&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;from lxml import etree
import xmltodict
from zeep import Client, Settings, Plugin
from zeep.transports import Transport
from zeep.cache import SqliteCache
from zeep.exceptions import Fault
from zeep.helpers import serialize_object
from requests import Session
from requests.auth import HTTPBasicAuth
import sys
import urllib3
import os

WSDL_FILE = 'schema/AXLAPI.wsdl'

DEBUG = True

CERT = 'tomcat.pem'

f = open('config.xml','r')
xml_config = f.read()
xml_dict = xmltodict.parse(xml_config)
xml_config_data = dict(xml_dict['settings'])

class MyLoggingPlugin( Plugin ):

&amp;nbsp; &amp;nbsp; def egress( self, envelope, http_headers, operation, binding_options ):

&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # Format the request body as pretty printed XML
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xml = etree.tostring( envelope, pretty_print = True, encoding = 'unicode')

&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print( f'\nRequest\n-------\nHeaders:\n{http_headers}\n\nBody:\n{xml}' )

&amp;nbsp; &amp;nbsp; def ingress( self, envelope, http_headers, operation ):

&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # Format the response body as pretty printed XML
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xml = etree.tostring( envelope, pretty_print = True, encoding = 'unicode')

&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; print( f'\nResponse\n-------\nHeaders:\n{http_headers}\n\nBody:\n{xml}' )

session = Session()
session.verify = CERT
session.verify = False
session.auth = HTTPBasicAuth(xml_config_data['ccmaxluser'],xml_config_data['ccmaxlpass'])
transport = Transport( session = session, timeout = 10 )
settings = Settings( strict=False, xml_huge_tree=True )
plugin = [ MyLoggingPlugin() ] if DEBUG else [ ]
client = Client( WSDL_FILE, settings = settings, transport = transport, plugins = plugin )
service = client.create_service( '{http://www.cisco.com/AXLAPIService/}AXLAPIBinding', f'https://{xml_config_data["ccmpub"]}:8443/axl/' )
template_list_query = {
&amp;nbsp; &amp;nbsp; 'sql' : 'select * from device where name like \'NCDV-TATOOL-AgentCSF%\''
}
try:
&amp;nbsp; &amp;nbsp; template_query_resp = service.executeSQLQuery(**template_list_query)
except Fault as err:
&amp;nbsp; &amp;nbsp; print("\nZeep error: {0}".format(err))
else:
&amp;nbsp; &amp;nbsp; print(template_query_resp)
&amp;nbsp; &amp;nbsp; print(template_query_resp['row']['return']['pkid'])
&amp;nbsp;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;The XML being returned from the server is:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
&amp;nbsp; &amp;lt;soapenv:Body&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;ns:executeSQLQueryResponse xmlns:ns="http://www.cisco.com/AXL/API/12.5"&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;return&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;row&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;pkid&amp;gt;6adf790c-6913-7a69-5d42-efc5ddc10cdc&amp;lt;/pkid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;NCDV-TATOOL-AgentCSF&amp;lt;/name&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Agent Softphone for Department Agent Name&amp;lt;/description&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkmodel&amp;gt;503&amp;lt;/tkmodel&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdeviceprotocol&amp;gt;11&amp;lt;/tkdeviceprotocol&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkprotocolside&amp;gt;1&amp;lt;/tkprotocolside&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;specialloadinformation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkdevicepool&amp;gt;cb49be07-fbb4-0356-33b0-a95bc904b725&amp;lt;/fkdevicepool&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkphonetemplate&amp;gt;8e1a10fa-a52c-4435-a4ec-540d266c8c37&amp;lt;/fkphonetemplate&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace&amp;gt;7c432750-8568-45cc-2dd7-cd8b12fd39e4&amp;lt;/fkcallingsearchspace&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ctiid&amp;gt;94&amp;lt;/ctiid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkclass&amp;gt;253&amp;lt;/tkclass&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkprocessnode/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;defaultdtmfcapability&amp;gt;0&amp;lt;/defaultdtmfcapability&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fklocation&amp;gt;29c5c1c4-8871-4d1e-8394-0b9181e8c54d&amp;lt;/fklocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkproduct&amp;gt;390&amp;lt;/tkproduct&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dialplanwizardgenid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;deviceleveltraceflag&amp;gt;f&amp;lt;/deviceleveltraceflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkenduser&amp;gt;33d23d46-d287-deeb-0f84-0696fdcd58af&amp;lt;/fkenduser&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowhotelingflag&amp;gt;f&amp;lt;/allowhotelingflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdeviceprofile&amp;gt;4&amp;lt;/tkdeviceprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ikdevice_defaultprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmediaresourcelist/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;userholdmohaudiosourceid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;networkholdmohaudiosourceid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unit&amp;gt;0&amp;lt;/unit&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subunit&amp;gt;0&amp;lt;/subunit&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcountry/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkuserlocale/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkproduct_base/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_aar/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkaarneighborhood/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksoftkeytemplate/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;retryvideocallasaudio&amp;gt;t&amp;lt;/retryvideocallasaudio&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;routelistenabled&amp;gt;f&amp;lt;/routelistenabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallmanagergroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_mlppindicationstatus&amp;gt;0&amp;lt;/tkstatus_mlppindicationstatus&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkpreemption&amp;gt;0&amp;lt;/tkpreemption&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_builtinbridge&amp;gt;1&amp;lt;/tkstatus_builtinbridge&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mtprequired&amp;gt;f&amp;lt;/mtprequired&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkqsig&amp;gt;4&amp;lt;/tkqsig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkpacketcapturemode&amp;gt;0&amp;lt;/tkpacketcapturemode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;packetcaptureduration&amp;gt;0&amp;lt;/packetcaptureduration&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;authenticationstring/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcertificatestatus&amp;gt;1&amp;lt;/tkcertificatestatus&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;upgradefinishtime/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmlppdomain/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;transmitutf8&amp;gt;f&amp;lt;/transmitutf8&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ignorepi&amp;gt;f&amp;lt;/ignorepi&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tknetworklocation&amp;gt;2&amp;lt;/tknetworklocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;v150modemrelaycapable&amp;gt;f&amp;lt;/v150modemrelaycapable&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcertificateoperation&amp;gt;1&amp;lt;/tkcertificateoperation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksecurityprofile&amp;gt;c6085e14-a32c-4c5e-a3d1-8daf60d81594&amp;lt;/fksecurityprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkdialrules/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_reroute/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_refer/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unattended_port&amp;gt;f&amp;lt;/unattended_port&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdtmfsignaling&amp;gt;1&amp;lt;/tkdtmfsignaling&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;requiredtmfreception&amp;gt;f&amp;lt;/requiredtmfreception&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;publickey/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksipprofile&amp;gt;fcbc7581-4d8d-48f3-917e-00b09fb39213&amp;lt;/fksipprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rfc2833disabled&amp;gt;f&amp;lt;/rfc2833disabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowcticontrolflag&amp;gt;t&amp;lt;/allowcticontrolflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;datetimeinserted/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sshpassword/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sshuserid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_restrict/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmatrix_presence&amp;gt;ad243d17-98b4-4118-8feb-5ff2e1b781ac&amp;lt;/fkmatrix_presence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcommonphoneconfig&amp;gt;ac243d17-98b4-4118-8feb-5ff2e1b781ac&amp;lt;/fkcommonphoneconfig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkkeyauthority&amp;gt;0&amp;lt;/tkkeyauthority&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipcodec_mtppreferredorigcodec&amp;gt;1&amp;lt;/tksipcodec_mtppreferredorigcodec&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;md5hash/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;srtpallowed&amp;gt;f&amp;lt;/srtpallowed&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isstandard&amp;gt;f&amp;lt;/isstandard&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;resettoggle&amp;gt;f&amp;lt;/resettoggle&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkreset&amp;gt;2&amp;lt;/tkreset&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;versionstamp&amp;gt;0000000000-c7a6c673-7479-46b0-839e-014d3d093963&amp;lt;/versionstamp&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcommondeviceconfig&amp;gt;07f0783d-0b53-896b-d9a5-fbfbc4476970&amp;lt;/fkcommondeviceconfig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;huntlistforvm&amp;gt;f&amp;lt;/huntlistforvm&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;remotedevice&amp;gt;f&amp;lt;/remotedevice&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_devicemobilitymode&amp;gt;2&amp;lt;/tkstatus_devicemobilitymode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dndtimeout&amp;gt;0&amp;lt;/dndtimeout&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdndoption&amp;gt;0&amp;lt;/tkdndoption&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkringsetting_dnd/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isdualmode&amp;gt;f&amp;lt;/isdualmode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkenduser_mobility/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkoutboundcallrollover&amp;gt;0&amp;lt;/tkoutboundcallrollover&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkphonepersonalization&amp;gt;3&amp;lt;/tkphonepersonalization&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_joinacrosslines&amp;gt;0&amp;lt;/tkstatus_joinacrosslines&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkbarge&amp;gt;0&amp;lt;/tkbarge&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_usetrustedrelaypoint&amp;gt;2&amp;lt;/tkstatus_usetrustedrelaypoint&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;istrustedrelaypoint&amp;gt;f&amp;lt;/istrustedrelaypoint&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;srtpfallbackallowed&amp;gt;f&amp;lt;/srtpfallbackallowed&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ispaienabled&amp;gt;t&amp;lt;/ispaienabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isrpidenabled&amp;gt;t&amp;lt;/isrpidenabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipprivacy&amp;gt;0&amp;lt;/tksipprivacy&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipassertedtype&amp;gt;0&amp;lt;/tksipassertedtype&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cdpntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcdpntransformcss&amp;gt;t&amp;lt;/usedevicepoolcdpntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;nationalprefix&amp;gt;Default&amp;lt;/nationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;internationalprefix&amp;gt;Default&amp;lt;/internationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unknownprefix&amp;gt;Default&amp;lt;/unknownprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subscriberprefix&amp;gt;Default&amp;lt;/subscriberprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcss&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ikdevice_primaryphone/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_audiblealertingidle&amp;gt;2&amp;lt;/tkstatus_audiblealertingidle&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_audiblealertingbusy&amp;gt;2&amp;lt;/tkstatus_audiblealertingbusy&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isactive&amp;gt;t&amp;lt;/isactive&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkphoneservicedisplay&amp;gt;3&amp;lt;/tkphoneservicedisplay&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isprotected&amp;gt;f&amp;lt;/isprotected&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmobilesmartclientprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_alwaysuseprimeline&amp;gt;2&amp;lt;/tkstatus_alwaysuseprimeline&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_alwaysuseprimelineforvm&amp;gt;2&amp;lt;/tkstatus_alwaysuseprimelineforvm&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;callednationalprefix&amp;gt;Default&amp;lt;/callednationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledinternationalprefix&amp;gt;Default&amp;lt;/calledinternationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledunknownprefix&amp;gt;Default&amp;lt;/calledunknownprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledsubscriberprefix&amp;gt;Default&amp;lt;/calledsubscriberprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;callednationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledinternationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledunknownstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledsubscriberstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_callednational/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledintl/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledunknown/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledsubscriber/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;hotlinedevice&amp;gt;f&amp;lt;/hotlinedevice&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkgeolocation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkgeolocationfilter_lp/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sendgeolocation&amp;gt;f&amp;lt;/sendgeolocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;nationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;internationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unknownstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subscriberstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnnational/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnintl/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnunknown/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnsubscriber/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssnatl&amp;gt;t&amp;lt;/usedevicepoolcalledcssnatl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssintl&amp;gt;t&amp;lt;/usedevicepoolcalledcssintl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssunkn&amp;gt;t&amp;lt;/usedevicepoolcalledcssunkn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcsssubs&amp;gt;t&amp;lt;/usedevicepoolcalledcsssubs&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;pstnaccess&amp;gt;f&amp;lt;/pstnaccess&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkvipre164transformation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssnatl&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssnatl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssintl&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssintl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssunkn&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssunkn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcsssubs&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcsssubs&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkfeaturecontrolpolicy/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;runonallnodes&amp;gt;f&amp;lt;/runonallnodes&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enableixchannel&amp;gt;f&amp;lt;/enableixchannel&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdevicetrustmode&amp;gt;0&amp;lt;/tkdevicetrustmode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolrdntransformcss&amp;gt;t&amp;lt;/usedevicepoolrdntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_rdntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablebfcp&amp;gt;f&amp;lt;/enablebfcp&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;requirecerlocation&amp;gt;f&amp;lt;/requirecerlocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpningressdn&amp;gt;t&amp;lt;/usedevicepoolcgpningressdn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpningressdn/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;earlyoffersupportforvoicecall&amp;gt;f&amp;lt;/earlyoffersupportforvoicecall&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablegatewayrecordingqsig&amp;gt;f&amp;lt;/enablegatewayrecordingqsig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calreference&amp;gt;-1&amp;lt;/calreference&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcalmode/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ndescription&amp;gt;Agent Softphone for Department Agent Name&amp;lt;/ndescription&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;msisdn/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkwirelesslanprofilegroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablecallroutingtordwhennoneisactive&amp;gt;f&amp;lt;/enablecallroutingtordwhennoneisactive&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkwifihotspotprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowcfbcontrolofcallsecurityicon&amp;gt;f&amp;lt;/allowcfbcontrolofcallsecurityicon&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkelingroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ecpublickeycurve/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscvaliduntil&amp;gt;0&amp;lt;/lscvaliduntil&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscissuername/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscissuervaliduntil&amp;gt;0&amp;lt;/lscissuervaliduntil&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tktrustreceivedidentity&amp;gt;0&amp;lt;/tktrustreceivedidentity&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enableactivationid&amp;gt;f&amp;lt;/enableactivationid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmraservicedomain/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowmramode&amp;gt;f&amp;lt;/allowmramode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isdevicemigrated&amp;gt;f&amp;lt;/isdevicemigrated&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/row&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;row&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;pkid&amp;gt;0cc1297a-6f78-0d7a-d96c-99ac066c6fd5&amp;lt;/pkid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;name&amp;gt;NCDV-TATOOL-AgentCSF-1&amp;lt;/name&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;description&amp;gt;Agent Softphone for Department Agent Name&amp;lt;/description&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkmodel&amp;gt;503&amp;lt;/tkmodel&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdeviceprotocol&amp;gt;11&amp;lt;/tkdeviceprotocol&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkprotocolside&amp;gt;1&amp;lt;/tkprotocolside&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;specialloadinformation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkdevicepool&amp;gt;cb49be07-fbb4-0356-33b0-a95bc904b725&amp;lt;/fkdevicepool&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkphonetemplate&amp;gt;8e1a10fa-a52c-4435-a4ec-540d266c8c37&amp;lt;/fkphonetemplate&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace&amp;gt;7c432750-8568-45cc-2dd7-cd8b12fd39e4&amp;lt;/fkcallingsearchspace&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ctiid&amp;gt;95&amp;lt;/ctiid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkclass&amp;gt;253&amp;lt;/tkclass&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkprocessnode/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;defaultdtmfcapability&amp;gt;0&amp;lt;/defaultdtmfcapability&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fklocation&amp;gt;29c5c1c4-8871-4d1e-8394-0b9181e8c54d&amp;lt;/fklocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkproduct&amp;gt;390&amp;lt;/tkproduct&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dialplanwizardgenid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;deviceleveltraceflag&amp;gt;f&amp;lt;/deviceleveltraceflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkenduser&amp;gt;33d23d46-d287-deeb-0f84-0696fdcd58af&amp;lt;/fkenduser&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowhotelingflag&amp;gt;f&amp;lt;/allowhotelingflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdeviceprofile&amp;gt;4&amp;lt;/tkdeviceprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ikdevice_defaultprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmediaresourcelist/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;userholdmohaudiosourceid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;networkholdmohaudiosourceid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unit&amp;gt;0&amp;lt;/unit&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subunit&amp;gt;0&amp;lt;/subunit&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcountry/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkuserlocale/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkproduct_base/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_aar/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkaarneighborhood/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksoftkeytemplate/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;retryvideocallasaudio&amp;gt;t&amp;lt;/retryvideocallasaudio&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;routelistenabled&amp;gt;f&amp;lt;/routelistenabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallmanagergroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_mlppindicationstatus&amp;gt;0&amp;lt;/tkstatus_mlppindicationstatus&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkpreemption&amp;gt;0&amp;lt;/tkpreemption&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_builtinbridge&amp;gt;1&amp;lt;/tkstatus_builtinbridge&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mtprequired&amp;gt;f&amp;lt;/mtprequired&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkqsig&amp;gt;4&amp;lt;/tkqsig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkpacketcapturemode&amp;gt;0&amp;lt;/tkpacketcapturemode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;packetcaptureduration&amp;gt;0&amp;lt;/packetcaptureduration&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;authenticationstring/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcertificatestatus&amp;gt;1&amp;lt;/tkcertificatestatus&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;upgradefinishtime/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmlppdomain/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;transmitutf8&amp;gt;f&amp;lt;/transmitutf8&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ignorepi&amp;gt;f&amp;lt;/ignorepi&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tknetworklocation&amp;gt;2&amp;lt;/tknetworklocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;v150modemrelaycapable&amp;gt;f&amp;lt;/v150modemrelaycapable&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcertificateoperation&amp;gt;1&amp;lt;/tkcertificateoperation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksecurityprofile&amp;gt;c6085e14-a32c-4c5e-a3d1-8daf60d81594&amp;lt;/fksecurityprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkdialrules/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_reroute/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_refer/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unattended_port&amp;gt;f&amp;lt;/unattended_port&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdtmfsignaling&amp;gt;1&amp;lt;/tkdtmfsignaling&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;requiredtmfreception&amp;gt;f&amp;lt;/requiredtmfreception&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;publickey/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fksipprofile&amp;gt;fcbc7581-4d8d-48f3-917e-00b09fb39213&amp;lt;/fksipprofile&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;rfc2833disabled&amp;gt;f&amp;lt;/rfc2833disabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowcticontrolflag&amp;gt;t&amp;lt;/allowcticontrolflag&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;datetimeinserted/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sshpassword/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sshuserid/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_restrict/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmatrix_presence&amp;gt;ad243d17-98b4-4118-8feb-5ff2e1b781ac&amp;lt;/fkmatrix_presence&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcommonphoneconfig&amp;gt;ac243d17-98b4-4118-8feb-5ff2e1b781ac&amp;lt;/fkcommonphoneconfig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkkeyauthority&amp;gt;0&amp;lt;/tkkeyauthority&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipcodec_mtppreferredorigcodec&amp;gt;1&amp;lt;/tksipcodec_mtppreferredorigcodec&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;md5hash/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;srtpallowed&amp;gt;f&amp;lt;/srtpallowed&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isstandard&amp;gt;f&amp;lt;/isstandard&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;resettoggle&amp;gt;f&amp;lt;/resettoggle&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkreset&amp;gt;2&amp;lt;/tkreset&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;versionstamp&amp;gt;0000000000-c7a6c673-7479-46b0-839e-014d3d093963&amp;lt;/versionstamp&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcommondeviceconfig&amp;gt;07f0783d-0b53-896b-d9a5-fbfbc4476970&amp;lt;/fkcommondeviceconfig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;huntlistforvm&amp;gt;f&amp;lt;/huntlistforvm&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;remotedevice&amp;gt;f&amp;lt;/remotedevice&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_devicemobilitymode&amp;gt;2&amp;lt;/tkstatus_devicemobilitymode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dndtimeout&amp;gt;0&amp;lt;/dndtimeout&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdndoption&amp;gt;0&amp;lt;/tkdndoption&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkringsetting_dnd/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isdualmode&amp;gt;f&amp;lt;/isdualmode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkenduser_mobility/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkoutboundcallrollover&amp;gt;0&amp;lt;/tkoutboundcallrollover&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkphonepersonalization&amp;gt;3&amp;lt;/tkphonepersonalization&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_joinacrosslines&amp;gt;0&amp;lt;/tkstatus_joinacrosslines&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkbarge&amp;gt;0&amp;lt;/tkbarge&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_usetrustedrelaypoint&amp;gt;2&amp;lt;/tkstatus_usetrustedrelaypoint&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;istrustedrelaypoint&amp;gt;f&amp;lt;/istrustedrelaypoint&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;srtpfallbackallowed&amp;gt;f&amp;lt;/srtpfallbackallowed&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ispaienabled&amp;gt;t&amp;lt;/ispaienabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isrpidenabled&amp;gt;t&amp;lt;/isrpidenabled&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipprivacy&amp;gt;0&amp;lt;/tksipprivacy&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tksipassertedtype&amp;gt;0&amp;lt;/tksipassertedtype&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cdpntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcdpntransformcss&amp;gt;t&amp;lt;/usedevicepoolcdpntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;nationalprefix&amp;gt;Default&amp;lt;/nationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;internationalprefix&amp;gt;Default&amp;lt;/internationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unknownprefix&amp;gt;Default&amp;lt;/unknownprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subscriberprefix&amp;gt;Default&amp;lt;/subscriberprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcss&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ikdevice_primaryphone/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_audiblealertingidle&amp;gt;2&amp;lt;/tkstatus_audiblealertingidle&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_audiblealertingbusy&amp;gt;2&amp;lt;/tkstatus_audiblealertingbusy&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isactive&amp;gt;t&amp;lt;/isactive&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkphoneservicedisplay&amp;gt;3&amp;lt;/tkphoneservicedisplay&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isprotected&amp;gt;f&amp;lt;/isprotected&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmobilesmartclientprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_alwaysuseprimeline&amp;gt;2&amp;lt;/tkstatus_alwaysuseprimeline&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkstatus_alwaysuseprimelineforvm&amp;gt;2&amp;lt;/tkstatus_alwaysuseprimelineforvm&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;callednationalprefix&amp;gt;Default&amp;lt;/callednationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledinternationalprefix&amp;gt;Default&amp;lt;/calledinternationalprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledunknownprefix&amp;gt;Default&amp;lt;/calledunknownprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledsubscriberprefix&amp;gt;Default&amp;lt;/calledsubscriberprefix&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;callednationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledinternationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledunknownstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calledsubscriberstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_callednational/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledintl/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledunknown/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_calledsubscriber/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;hotlinedevice&amp;gt;f&amp;lt;/hotlinedevice&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkgeolocation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkgeolocationfilter_lp/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sendgeolocation&amp;gt;f&amp;lt;/sendgeolocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;nationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;internationalstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;unknownstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;subscriberstripdigits/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnnational/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnintl/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnunknown/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpnsubscriber/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssnatl&amp;gt;t&amp;lt;/usedevicepoolcalledcssnatl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssintl&amp;gt;t&amp;lt;/usedevicepoolcalledcssintl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcssunkn&amp;gt;t&amp;lt;/usedevicepoolcalledcssunkn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcalledcsssubs&amp;gt;t&amp;lt;/usedevicepoolcalledcsssubs&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;pstnaccess&amp;gt;f&amp;lt;/pstnaccess&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkvipre164transformation/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssnatl&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssnatl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssintl&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssintl&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcssunkn&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcssunkn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpntransformcsssubs&amp;gt;t&amp;lt;/usedevicepoolcgpntransformcsssubs&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkfeaturecontrolpolicy/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;runonallnodes&amp;gt;f&amp;lt;/runonallnodes&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enableixchannel&amp;gt;f&amp;lt;/enableixchannel&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkdevicetrustmode&amp;gt;0&amp;lt;/tkdevicetrustmode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolrdntransformcss&amp;gt;t&amp;lt;/usedevicepoolrdntransformcss&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_rdntransform/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablebfcp&amp;gt;f&amp;lt;/enablebfcp&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;requirecerlocation&amp;gt;f&amp;lt;/requirecerlocation&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;usedevicepoolcgpningressdn&amp;gt;t&amp;lt;/usedevicepoolcgpningressdn&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkcallingsearchspace_cgpningressdn/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;earlyoffersupportforvoicecall&amp;gt;f&amp;lt;/earlyoffersupportforvoicecall&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablegatewayrecordingqsig&amp;gt;f&amp;lt;/enablegatewayrecordingqsig&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;calreference&amp;gt;-1&amp;lt;/calreference&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tkcalmode/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ndescription&amp;gt;Agent Softphone for Department Agent Name&amp;lt;/ndescription&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;msisdn/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkwirelesslanprofilegroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enablecallroutingtordwhennoneisactive&amp;gt;f&amp;lt;/enablecallroutingtordwhennoneisactive&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkwifihotspotprofile/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowcfbcontrolofcallsecurityicon&amp;gt;f&amp;lt;/allowcfbcontrolofcallsecurityicon&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkelingroup/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ecpublickeycurve/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscvaliduntil&amp;gt;0&amp;lt;/lscvaliduntil&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscissuername/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;lscissuervaliduntil&amp;gt;0&amp;lt;/lscissuervaliduntil&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tktrustreceivedidentity&amp;gt;0&amp;lt;/tktrustreceivedidentity&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;enableactivationid&amp;gt;f&amp;lt;/enableactivationid&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fkmraservicedomain/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;allowmramode&amp;gt;f&amp;lt;/allowmramode&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isdevicemigrated&amp;gt;f&amp;lt;/isdevicemigrated&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/row&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/return&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/ns:executeSQLQueryResponse&amp;gt;
&amp;nbsp; &amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;&lt;/PRE&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;Any Help would be greatly appreciated.&lt;/DIV&gt;&lt;/DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 15:11:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626024#M3889</guid>
      <dc:creator>William Bryant</dc:creator>
      <dc:date>2022-06-06T15:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance fetching data returned by Zeep</title>
      <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626136#M3890</link>
      <description>&lt;P&gt;Is it possible that you need to parse the XML that is returned?&amp;nbsp; Here's a page from Python docs that deal with this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.python.org/3/library/xml.etree.elementtree.html" target="_blank"&gt;https://docs.python.org/3/library/xml.etree.elementtree.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 17:25:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626136#M3890</guid>
      <dc:creator>npetrele</dc:creator>
      <dc:date>2022-06-06T17:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance fetching data returned by Zeep</title>
      <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626267#M3891</link>
      <description>&lt;P&gt;Now that I look at it again, I think what you're getting back are elements of variables by memory address:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;Element enablebfcp at 0x1b2ac5a0600&amp;gt;&lt;/P&gt;
&lt;P&gt;So that's enablefcp, which is stored at memory address 0x1b2ac5a0600.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I dealt with this issue a year or two ago, and I'm digging through my archives to see how I solved it. I'll come back and post if I can find the answer.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2022 20:47:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4626267#M3891</guid>
      <dc:creator>npetrele</dc:creator>
      <dc:date>2022-06-06T20:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance fetching data returned by Zeep</title>
      <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4627515#M3892</link>
      <description>&lt;P&gt;This sample shows using &amp;lt;executeSQLQuery&amp;gt; with Zeep: &lt;A href="https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_executeSQLQuery.py" target="_blank"&gt;https://github.com/CiscoDevNet/axl-python-zeep-samples/blob/master/axl_executeSQLQuery.py&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It looks like your object parsing is a bit off here:&lt;/P&gt;
&lt;PRE&gt;print(template_query_resp['row']['return']['pkid'])&lt;/PRE&gt;
&lt;P&gt;where the order should be:&lt;/P&gt;
&lt;PRE&gt;['return']['row']&lt;/PRE&gt;
&lt;P&gt;However, 'row' is going to be a Python list (not a single row) of eTree elements, so you will want to iterate over the list to print your data row-by-row:&lt;/P&gt;
&lt;PRE&gt;for single_row in template_query_resp['return']['row']:
    print(single_row)&lt;/PRE&gt;
&lt;P&gt;BUT: note that since this is an adhoc query, Zeep cannot create a fully formed Python object out of the response, since the AXL schema can't know what columns you've asked for in the SQL.&amp;nbsp; As a result, a single_row is not a dictionary with a key named 'pkid', but rather a Python list of element objects, so you'll need to access columns by index and get the 'text' value.&amp;nbsp; 'pkid' is the zero-th column in the row, so:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;for single_row in template_query_resp['return']['row']:
    print(single_row[0].text)&lt;/PRE&gt;
&lt;P&gt;This is a bit easier if you restrict the number of returned fields to the minimum needed.&lt;BR /&gt;If you don't like extracting 'blind' by index, you can make a small function to look up the value by tag:&lt;/P&gt;
&lt;PRE&gt;def get_column(tag, row):
    element = list(filter(lambda x: x.tag == tag, row))
    return element[0].text if len(element) &amp;gt; 0 else None
for single_row in template_query_resp['return']['row']:&lt;BR /&gt;    print(get_column('pkid', single_row))
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 23:17:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4627515#M3892</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2022-06-07T23:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need assistance fetching data returned by Zeep</title>
      <link>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4630852#M3898</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked perfectly&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2022 15:11:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/need-assistance-fetching-data-returned-by-zeep/m-p/4630852#M3898</guid>
      <dc:creator>William Bryant</dc:creator>
      <dc:date>2022-06-13T15:11:03Z</dc:date>
    </item>
  </channel>
</rss>

