<?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: UpdateLine AXL API syntax error in Management</title>
    <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3714969#M2977</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please remove the attribute&amp;nbsp;uuid="?". The character "?" does not&amp;nbsp;match the uuid format. If the uuid attribute not set the axl interface takes the value to match, otherwise it will check for the value of the uuid&amp;nbsp;attribute (in this case "?").&lt;/P&gt;
&lt;P&gt;The uuid attribute has a higher priority.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mathias&lt;/P&gt;</description>
    <pubDate>Fri, 28 Sep 2018 11:43:30 GMT</pubDate>
    <dc:creator>mathias.tonn</dc:creator>
    <dc:date>2018-09-28T11:43:30Z</dc:date>
    <item>
      <title>UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3693511#M2947</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I am trying to update Line using the below Powershell command but i am getting a response while trying to post from the web service. This works if i remove the below 4 attributes from the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;[String]$voiceMailProfileName,
[String]$shareLineAppearanceCssName,
[String]$presenceGroupName,
[String]$autoAnswer&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;PRE&gt;&amp;lt;voiceMailProfileName uuid="?"&amp;gt;$voiceMailProfileName&amp;lt;/voiceMailProfileName&amp;gt;
&amp;lt;shareLineAppearanceCssName uuid="?"&amp;gt;$shareLineAppearanceCssName&amp;lt;/shareLineAppearanceCssName&amp;gt;
&amp;lt;presenceGroupName uuid="?"&amp;gt;$presenceGroupName&amp;lt;/presenceGroupName&amp;gt;
&amp;lt;autoAnswer&amp;gt;$autoAnswer&amp;lt;/autoAnswer&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kindly assist.&lt;/P&gt;
&lt;PRE&gt;Function Set-CUCMLine {
param(
[Parameter(Mandatory,ValueFromPipelineByPropertyName)][String]$Pattern,
[Parameter(Mandatory)][String]$RoutePartitionName,
[String]$Description,
[String]$AlertingName,
[String]$AsciiAlertingName,
[String]$voiceMailProfileName,
[String]$shareLineAppearanceCssName,
[String]$presenceGroupName,
[String]$autoAnswer
)

$AXL = @"
&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.0"&amp;gt;
&amp;lt;soapenv:Header/&amp;gt;
&amp;lt;soapenv:Body&amp;gt;
&amp;lt;ns:updateLine sequence="?"&amp;gt;
&amp;lt;pattern&amp;gt;$Pattern&amp;lt;/pattern&amp;gt;
&amp;lt;routePartitionName&amp;gt;$RoutePartitionName&amp;lt;/routePartitionName&amp;gt;
&amp;lt;description&amp;gt;$Description&amp;lt;/description&amp;gt;
&amp;lt;alertingName&amp;gt;$AlertingName&amp;lt;/alertingName&amp;gt;
&amp;lt;asciiAlertingName&amp;gt;$AsciiAlertingName&amp;lt;/asciiAlertingName&amp;gt;
&amp;lt;voiceMailProfileName uuid="?"&amp;gt;$voiceMailProfileName&amp;lt;/voiceMailProfileName&amp;gt;
&amp;lt;shareLineAppearanceCssName uuid="?"&amp;gt;$shareLineAppearanceCssName&amp;lt;/shareLineAppearanceCssName&amp;gt;
&amp;lt;presenceGroupName uuid="?"&amp;gt;$presenceGroupName&amp;lt;/presenceGroupName&amp;gt;
&amp;lt;autoAnswer&amp;gt;$autoAnswer&amp;lt;/autoAnswer&amp;gt;
&amp;lt;/ns:updateLine&amp;gt;
&amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;
"@

Invoke-CUCMSOAPAPIFunction -AXL $AXL -MethodName updateLine
}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2018 07:07:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3693511#M2947</guid>
      <dc:creator>JestyDS</dc:creator>
      <dc:date>2018-08-23T07:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3694508#M2950</link>
      <description>&lt;P&gt;Can someone please guide me if i could update the DN configuration using UpdateLine method. i understood from DB schema that these attributes such as Voiceemailname,CSSsearchspaces are FK attributes. How can they be parsed in an XML format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kindly assist.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 12:53:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3694508#M2950</guid>
      <dc:creator>JestyDS</dc:creator>
      <dc:date>2018-08-24T12:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3703017#M2965</link>
      <description>&lt;P&gt;Any help?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 16:21:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3703017#M2965</guid>
      <dc:creator>JestyDS</dc:creator>
      <dc:date>2018-09-07T16:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3707198#M2968</link>
      <description>&lt;P&gt;What errors are you seeing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The value of the 'voiceMailProfileName' element should be an existing VM profile. Does that VM profile exist?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 15:10:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3707198#M2968</guid>
      <dc:creator>dcburleigh</dc:creator>
      <dc:date>2018-09-14T15:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3710172#M2975</link>
      <description>&lt;P&gt;yes it does exist.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Sep 2018 07:11:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3710172#M2975</guid>
      <dc:creator>JestyDS</dc:creator>
      <dc:date>2018-09-20T07:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3714969#M2977</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please remove the attribute&amp;nbsp;uuid="?". The character "?" does not&amp;nbsp;match the uuid format. If the uuid attribute not set the axl interface takes the value to match, otherwise it will check for the value of the uuid&amp;nbsp;attribute (in this case "?").&lt;/P&gt;
&lt;P&gt;The uuid attribute has a higher priority.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mathias&lt;/P&gt;</description>
      <pubDate>Fri, 28 Sep 2018 11:43:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3714969#M2977</guid>
      <dc:creator>mathias.tonn</dc:creator>
      <dc:date>2018-09-28T11:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateLine AXL API syntax error</title>
      <link>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3720372#M2978</link>
      <description>&lt;P&gt;pkid value did the work for me. thanks for your suggestions&lt;/P&gt;</description>
      <pubDate>Sat, 06 Oct 2018 11:00:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/management/updateline-axl-api-syntax-error/m-p/3720372#M2978</guid>
      <dc:creator>JestyDS</dc:creator>
      <dc:date>2018-10-06T11:00:49Z</dc:date>
    </item>
  </channel>
</rss>

