<?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 Update: In firefox this is in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090508#M65129</link>
    <description>&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(36, 39, 41); font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; line-height: 19.5px;"&gt;Update: In firefox this is the console log error:&lt;/P&gt;

&lt;BLOCKQUOTE style="margin-bottom: 10px; padding: 10px; border-width: 0px 0px 0px 2px; border-left-style: solid; border-left-color: rgb(255, 235, 142); font-size: 15px; quotes: none; color: rgb(36, 39, 41); font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; font-style: normal; line-height: 19.5px; background-color: rgb(255, 248, 220);"&gt;
	&lt;P style="border: 0px; clear: both;"&gt;Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at&lt;A href="https://www.example/app/login.php" rel="nofollow" style="border: 0px; color: rgb(0, 89, 153); cursor: pointer;"&gt;https://www.example/app/login.php&lt;/A&gt;. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Tue, 09 Aug 2016 07:14:11 GMT</pubDate>
    <dc:creator>xkevin</dc:creator>
    <dc:date>2016-08-09T07:14:11Z</dc:date>
    <item>
      <title>No 'Access-Control-Allow-Origin' header issue</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090507#M65128</link>
      <description>&lt;P&gt;I am done developing my first hybrid app. It runs smoothly in localhost. But when I tried to make it live, I got this error.&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;XMLHttpRequest cannot load &lt;A href="https://www.example.com/app/login.php.&amp;nbsp;" target="_blank"&gt;https://www.example.com/app/login.php.&amp;nbsp;&lt;/A&gt;;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. The response had HTTP status code 500.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Why is this happening? &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Here is my sample set up on my ajax request:&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;$.ajax({
           type: "POST",
           url: "https://www.example.com/app/login.php",
           crossDomain: true,
           dataType: 'json',
           data: $.trim(frm.serialize()),
           timeout: 10000,
           beforeSend: function() {                  
              $('#loader').css({
                display: "block"
               });
  }&lt;/PRE&gt;

&lt;P&gt;....&lt;/P&gt;

&lt;P&gt;Then on my php server code:&lt;/P&gt;

&lt;PRE class="brush:php;"&gt;&amp;lt;?php
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
header('HTTP/1.1 200 OK');

//more code here..
{
echo json_encode($result_array);
}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;What should I do to resolve this error? Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2016 03:42:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090507#M65128</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-09T03:42:21Z</dc:date>
    </item>
    <item>
      <title>Update: In firefox this is</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090508#M65129</link>
      <description>&lt;P style="margin-bottom: 1em; border: 0px; font-size: 15px; clear: both; color: rgb(36, 39, 41); font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; line-height: 19.5px;"&gt;Update: In firefox this is the console log error:&lt;/P&gt;

&lt;BLOCKQUOTE style="margin-bottom: 10px; padding: 10px; border-width: 0px 0px 0px 2px; border-left-style: solid; border-left-color: rgb(255, 235, 142); font-size: 15px; quotes: none; color: rgb(36, 39, 41); font-family: Arial, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, sans-serif; font-style: normal; line-height: 19.5px; background-color: rgb(255, 248, 220);"&gt;
	&lt;P style="border: 0px; clear: both;"&gt;Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at&lt;A href="https://www.example/app/login.php" rel="nofollow" style="border: 0px; color: rgb(0, 89, 153); cursor: pointer;"&gt;https://www.example/app/login.php&lt;/A&gt;. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 09 Aug 2016 07:14:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090508#M65129</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-09T07:14:11Z</dc:date>
    </item>
    <item>
      <title>I have search on the net. And</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090509#M65130</link>
      <description>&lt;P&gt;I have search on the net. And found out that there's no need to add header to my webserver. And I have a feeling that this may cause because of the whitelisting(any guide?) and setup of the &lt;SPAN style="color: rgb(51, 51, 51); font-family: adobe-clean, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 16px; line-height: 24px;"&gt;config.xml. Any guide?&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2016 08:32:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090509#M65130</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-09T08:32:28Z</dc:date>
    </item>
    <item>
      <title>See the whitelisting doc</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090510#M65131</link>
      <description>&lt;P&gt;See the whitelisting doc pages &amp;gt; &lt;A href="https://software.intel.com/en-us/xdk/docs/using-cordova-whitelist-rules-with-intel-xdk" target="_blank"&gt;https://software.intel.com/en-us/xdk/docs/using-cordova-whitelist-rules-with-intel-xdk&lt;/A&gt; &amp;lt; You may have to add some CSP to your app's index.html page, as well as whitelists to the build settings. If you are using jQuery, you should switch to version 2 of the library, not version 1 &amp;gt; &lt;A href="https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail" target="_blank"&gt;https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail&lt;/A&gt; &amp;lt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 01:45:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090510#M65131</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-08-10T01:45:51Z</dc:date>
    </item>
    <item>
      <title>Quote:Paul F. (Intel) wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090511#M65132</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Paul F. (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;See the whitelisting doc pages &amp;gt;&amp;nbsp;&lt;A href="https://software.intel.com/en-us/xdk/docs/using-cordova-whitelist-rules-with-intel-xdk"&gt;https://software.intel.com/en-us/xdk/docs/using-cordova-whitelist-rules-...&lt;/A&gt;&amp;nbsp;&amp;lt; You may have to add some CSP to your app's index.html page, as well as whitelists to the build settings. If you are using jQuery, you should switch to version 2 of the library, not version 1 &amp;gt;&amp;nbsp;&lt;A href="https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail"&gt;https://software.intel.com/en-us/xdk/faqs/app-designer#ajax-jquery-one-fail&lt;/A&gt;&amp;nbsp;&amp;lt;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;"You may have to add some CSP to your app's index.html page" - Hi Paul, Thank you for replying.. Do I need to add CSP as well to my other html pages? I have different html page(index.html, login.html and user.html). &amp;nbsp;I added CSP all of them. Here is my CSP code.&lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;lt;meta http-equiv="Content-Security-Policy" content="default-src 'self' &lt;A href="https://example.ph/app/" target="_blank"&gt;https://example.ph/app/&lt;/A&gt; 'unsafe-eval' data: blob: filesystem: ws: gap: cdvfile: &lt;A href="https://ssl.gstatic.com" target="_blank"&gt;https://ssl.gstatic.com&lt;/A&gt; *; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'; img-src * data: 'unsafe-inline'; connect-src * 'unsafe-inline'; child-src *; "&amp;gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;What is the best way to test my app? Because I am trying to run in on my google/firefox browser, to the simulate tab of intel xdk and I also try it installing on my andriod device. All have differents ajax error.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Firefox and Intelxdk Simulate tab:&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;500 Internal Server Error&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;Google Chrome:&amp;nbsp;No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. The response had HTTP status code 500.&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;On installed andriod phone: ParseError.&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;Any guide on this? I will try to upgrade my jquery lib and then I will post update. Thanks.&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 02:36:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090511#M65132</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-10T02:36:00Z</dc:date>
    </item>
    <item>
      <title>Other information.. I have</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090512#M65133</link>
      <description>&lt;P&gt;Other information.. I have check the version of my jquery lib and found out that it is version 2.2.3&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&amp;lt;script type="application/javascript" src="lib/jquery-2.2.3.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I did the whitelisting like the attached image. I have question regarding this:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;If my site is &lt;STRONG&gt;&lt;A href="https://www.example.ph" target="_blank"&gt;https://www.example.ph&lt;/A&gt;&lt;/STRONG&gt;. Do I need to exclude the 'www' in the domain?&lt;/LI&gt;
	&lt;LI&gt;&amp;nbsp;I put &lt;A href="https://example.ph" target="_blank"&gt;https://example.ph&lt;/A&gt; on the whitelist but the ajax request url is&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;A href="https://example.ph/app/login.php" target="_blank"&gt;https://example.ph/app/login.php&lt;/A&gt;. Do I need to change the &amp;nbsp;&lt;STRONG&gt;&lt;A href="https://example.ph" target="_blank"&gt;https://example.ph&lt;/A&gt;&lt;/STRONG&gt; to&amp;nbsp;&lt;STRONG&gt;&lt;A href="https://example.ph/app" target="_blank"&gt;https://example.ph/app&lt;/A&gt; &lt;/STRONG&gt;on the whitelist ?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 10 Aug 2016 02:57:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090512#M65133</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-10T02:57:29Z</dc:date>
    </item>
    <item>
      <title>See the whitelist plugin doc</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090513#M65134</link>
      <description>&lt;P&gt;See the whitelist plugin doc page for additional background on how to set the whitelist URLs. The whitelist rules should match what you use in your AJAX calls, if you call &lt;A href="https://www.example.ph" target="_blank"&gt;https://www.example.ph&lt;/A&gt; then that is what should be in your whitelist. This is what those rules are generating in the config.xml files &amp;gt; &lt;A href="https://cordova.apache.org/docs/en/latest/guide/appdev/whitelist/" target="_blank"&gt;https://cordova.apache.org/docs/en/latest/guide/appdev/whitelist/&lt;/A&gt; &amp;lt;&lt;/P&gt;

&lt;P&gt;You need to test this stuff on a real device with a built app, there is no other way to test it thoroughly and really know what works.&lt;/P&gt;

&lt;P&gt;You should build a single-page app, multi-page apps do not work well in the Cordova context. See this article &amp;gt; &lt;A href="https://cordova.apache.org/docs/en/latest/guide/next/index.html" target="_blank"&gt;https://cordova.apache.org/docs/en/latest/guide/next/index.html&lt;/A&gt; &amp;lt; you may be losing the whitelist rules after switching away from index.html as a result of switching to a new page, you are also incurring overhead, because you have to reinitialize the Cordova subsystem with each new page, meaning you have to include the cordova.js file in each one.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 06:36:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090513#M65134</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-08-10T06:36:36Z</dc:date>
    </item>
    <item>
      <title>Sorry but it's not clear to</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090514#M65135</link>
      <description>&lt;P&gt;Sorry but it's not clear to me about this whitelisting.&lt;/P&gt;

&lt;P&gt;I have different file on web server like:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="https://www.example/app/login.php&amp;nbsp;" target="_blank"&gt;https://www.example/app/login.php&amp;nbsp;&lt;/A&gt;;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;A href="https://www.example/app/verify.php" target="_blank"&gt;https://www.example/app/verify.php&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;A href="https://www.example/app/data.php" target="_blank"&gt;https://www.example/app/data.php&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;I use these on my ajax request url's eg:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;$.ajax({&lt;BR /&gt;
		type: "POST",&lt;BR /&gt;
		crossDomain: true,&lt;BR /&gt;
		&amp;nbsp;url: "https://www.example.ph/app/login.php",&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;So, on my whitelist should it be &lt;STRONG&gt;&lt;A href="https://www.example.ph" target="_blank"&gt;https://www.example.ph&lt;/A&gt;&lt;/STRONG&gt;,&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;&lt;STRONG&gt;&lt;A href="https://www.example.ph/app/" target="_blank"&gt;https://www.example.ph/app/&lt;/A&gt;&lt;/STRONG&gt; or&amp;nbsp;&lt;STRONG&gt;&lt;A href="https://example.ph" target="_blank"&gt;https://example.ph&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Again.. sorry for asking a newbie question. Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 08:17:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090514#M65135</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-10T08:17:29Z</dc:date>
    </item>
    <item>
      <title>Please see the examples in</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090515#M65136</link>
      <description>&lt;P&gt;Please see the examples in the documentation &amp;gt; &lt;A href="https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/" target="_blank"&gt;https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/&lt;/A&gt; &amp;lt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 15:44:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090515#M65136</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-08-10T15:44:43Z</dc:date>
    </item>
    <item>
      <title>Hi Paul, Thank you for</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090516#M65137</link>
      <description>&lt;P&gt;Hi Paul, Thank you for assisting!&amp;nbsp;&lt;/P&gt;

&lt;P&gt;If I have this 3 html pages on my app it is possible to add config file to login.html and user.html? Like does the index.html have for whitelisting? If so which file should I consider to edit/add whitelist for login and user.html (attached image)? Or do I need to add config file for each html pages?&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&amp;lt;author&amp;gt;Intel XDK&amp;lt;/author&amp;gt;&lt;BR /&gt;
		&amp;lt;content src="index.html"/&amp;gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Is it possible to change this &lt;EM&gt;&amp;lt;content src="index.html"/&amp;gt; &lt;/EM&gt;to&lt;EM&gt; &lt;/EM&gt;&lt;EM style="font-size: 13.008px; line-height: 19.512px;"&gt;&amp;lt;content src="login.html"/&amp;gt;&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;? Let me know any information I need? Thank you so much!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 00:42:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090516#M65137</guid>
      <dc:creator>xkevin</dc:creator>
      <dc:date>2016-08-11T00:42:40Z</dc:date>
    </item>
    <item>
      <title>The whitelisting rules apply</title>
      <link>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090517#M65138</link>
      <description>&lt;P&gt;The whitelisting rules apply to all html files, but only if they include cordova.js. Please read the article I pointed you to, multiple HTML files is not a good idea, especially if you are new to Cordova. Rewrite your app as a single index.html file, just like the samples, do not try to build a multi-page HTML app, you'll just end up swimming against the tide.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2016 03:32:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/No-Access-Control-Allow-Origin-header-issue/m-p/1090517#M65138</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-08-11T03:32:00Z</dc:date>
    </item>
  </channel>
</rss>

