<?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: Error while reloading from accesspoint using Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990759#M337585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used entire code which you given in Text File&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Nov 2015 06:37:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-16T06:37:02Z</dc:date>
    <item>
      <title>Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990751#M337577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam using following Macro to Reload By EDX Trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam getting Attached Error. please find the attachment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me to solve the issue.Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #ff0000;"&gt;Macro:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Sub CargoEDX()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;SPAN&gt;url = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://SERVIDOR" rel="nofollow"&gt;http://SERVIDOR&lt;/A&gt;&lt;SPAN&gt; _QLIKVIEW:4720/&lt;/SPAN&gt;&lt;SPAN class="skimlinks-unlinked"&gt;qtxs.asmx&lt;/SPAN&gt;" 'QV Server Address and URL EDX's service&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;userID = "LOGIN" 'User login in target system. It must belongs to "QlikView Administrators"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;pass = "PASSWORD" 'User Password&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;doc = "Aplicaciones/Monitoreo Servidor/&lt;SPAN class="skimlinks-unlinked"&gt;WebServerPerformance.qvw&lt;/SPAN&gt;" 'Task name that it wants execute&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;MsgBox "The reload starts. Please press "Accept" and wait for a minute"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;MsgBox ReloadEDX(url, doc, userID, pass) 'Call to the EDX execution&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Function ReloadEDX(dsURL, document, userID, pass)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ' Here get a ticket to call the EDX. It's because a security scheme based in double request&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Dim requestKey, xmlhttp, requestData, httpResult&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Set xmlhttp = CreateObject("msxml2.xmlhttp.3.0")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &lt;SPAN class="skimlinks-unlinked"&gt;xmlhttp.Open&lt;/SPAN&gt; "post", dsURL, False, userID, pass&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; requestData = "&amp;lt;Global method=""GetTimeLimitedRequestKey"" /&amp;gt;" '&amp;amp; vbCrLf&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; &lt;SPAN class="skimlinks-unlinked"&gt;xmlhttp.send&lt;/SPAN&gt; requestData&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Set oDOM = CreateObject("MSXML2.DOMDocument.3.0")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; oDOM.LoadXML xmlhttp.responseText&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ' Takes ticket hash from the response&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; requestKey = oDOM.SelectSingleNode("//GetTimeLimitedRequestKeyResult").Text&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ' Call task (EDX) for execute&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; rtaExec = CallTask(requestKey, document, dsURL, userID, pass)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; If rtaExec = Null Then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ReloadEDX = httpResult&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; If rtaExec = "Success" Then&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ReloadEDX = "The reload has finished."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Else&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; ReloadEDX = httpResult&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; End If&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; End If&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;End Function&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;'EDX call thru a HTTP POST&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Function CallTask(key,task,url, usr, pasw)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Set xmlhttp2 = CreateObject("msxml2.xmlhttp.3.0")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; requestData = "&amp;lt;Global method=""RequestEDX"" key=""" &amp;amp; key&amp;amp; """&amp;gt;&amp;lt;i_TaskIDOrTaskName&amp;gt;" &amp;amp; task&amp;amp; "&amp;lt;/i_TaskIDOrTaskName&amp;gt;&amp;lt;i_Password /&amp;gt;&amp;lt;i_VariableName /&amp;gt;&amp;lt;i_VariableValueList /&amp;gt;&amp;lt;/Global&amp;gt;" &amp;amp; vbCrLf&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; xmlhttp2.Open "post", url, False, usr, pasw&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; xmlhttp2.send requestData ' Send XML with service &lt;SPAN class="skimlinks-unlinked"&gt;qtxs.asmx&lt;/SPAN&gt; required data &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; Set oDOM2 = CreateObject("MSXML2.DOMDocument.3.0")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; oDOM2.LoadXML xmlhttp2.responseText&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; set CallTask2 = oDOM2.SelectSingleNode("//TaskStartResult")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; CallTask = "Success"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;End Function&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 07:43:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990751#M337577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-13T07:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990752#M337578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Are,&lt;/P&gt;&lt;P&gt;tyr to use the attached EDX script, it works and it gives you the possibility to monitor the reloading in your qvw.&lt;/P&gt;&lt;P&gt;Pay attention to the const declarations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro to launch is fnStartEDXandMonitorAllClient&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know.&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 09:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990752#M337578</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-11-13T09:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990753#M337579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #575757;"&gt;1.Task name&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;path with qvw name or only taskname?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.Const sSoapNameSpace="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ws.qliktech.com/QMS/11/IQMS/" rel="nofollow"&gt;http://ws.qliktech.com/QMS/11/IQMS/&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whee i need to find the Path for Above Const in Server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.error while running please find the attached screen shot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 09:36:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990753#M337579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-13T09:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990754#M337580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are,&lt;/P&gt;&lt;P&gt;did it solve your issue?&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 10:29:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990754#M337580</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-11-13T10:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990755#M337581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you look bellow Cont:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; text-decoration: underline;"&gt;&lt;STRONG&gt;Const sSoapNameSpace="&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ws.qliktech.com/QMS/11/IQMS/" rel="nofollow" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;http://ws.qliktech.com/QMS/11/IQMS/&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;is this QMC Url or from where i need to get it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Task name&lt;/STRONG&gt;: only task name or full path with qvw name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 10:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990755#M337581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-13T10:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990756#M337582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Const sSoapNameSpace: don't touch&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; text-decoration: underline;"&gt;Task name&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;: it migth be only task name.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;S.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990756#M337582</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-11-13T11:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990757#M337583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please find the Attached error while running button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990757#M337583</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-13T11:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990758#M337584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you use the entire code I gave you or did you change (cut) it?&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2015 12:57:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990758#M337584</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2015-11-13T12:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error while reloading from accesspoint using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990759#M337585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used entire code which you given in Text File&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2015 06:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-while-reloading-from-accesspoint-using-Macro/m-p/990759#M337585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-16T06:37:02Z</dc:date>
    </item>
  </channel>
</rss>

