<?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 Using basemaps requiring credentials in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432232#M5237</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having the darnedest time&amp;nbsp;creating a basemap based on a ArcGISTiledLayer that is coming from a Uri that requires credentials...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here's what I'm doing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="font-family: terminal, monaco, monospace; font-size: 11px;"&gt;&amp;nbsp;CurrentBasemapUrl = "&lt;A class="link-titled" href="https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer" title="https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer"&gt;https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer&lt;/A&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var server = CurrentBasemapUrl; // "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fmaps.gvs.nga.mil%2Farcgis%2Frest%2Fservices%2FBasemap%2FNGA_World_Imagery_2D%2FMapServer" rel="nofollow" target="_blank"&gt;https://maps.gvs.nga.mil/arcgis/rest/services/Basemap/NGA_World_Imagery_2D/MapServer&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&amp;nbsp;Esri.ArcGISRuntime.Security.AuthenticationManager.Current.ChallengeHandler = new ChallengeHandler(myChallengeHandler);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&amp;nbsp;myMap.Basemap = new Basemap(&lt;/SPAN&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;new ArcGISTiledLayer(new Uri(server)));&lt;/SPAN&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for myChallengeHandler, I have this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt; static async Task&amp;lt;Credential&amp;gt; myChallengeHandler(CredentialRequestInfo cri)&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp;switch(cri.AuthenticationType)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; case AuthenticationType.Token:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var options = new Esri.ArcGISRuntime.Security.GenerateTokenOptions() {&amp;nbsp;Referer = new Uri(CurrentBasemapUrl)};&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var user = "myusernameishere";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var pass = "mypasswordishere";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cred = await AuthenticationManager.Current.GenerateCredentialAsync(&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;new Uri("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fwww.arcgis.com%2Fsharing%2Frest%2Fgeneratetoken" rel="nofollow" target="_blank"&gt;https://www.arcgis.com/sharing/rest/generatetoken&lt;/A&gt;&lt;SPAN&gt;"),user, pass, options);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return cred;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;return null;&lt;BR /&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;when I do this, all I get is a grid, no maps. But I'm not getting any errors. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the same URL, I was able to successfully download a tile package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the URL to "&lt;A class="jivelink3" href="http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer" title="http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer&lt;/A&gt;" (which doesn't require any creditials, it works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Feb 2017 19:59:54 GMT</pubDate>
    <dc:creator>DavidHope</dc:creator>
    <dc:date>2017-02-08T19:59:54Z</dc:date>
    <item>
      <title>Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432232#M5237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having the darnedest time&amp;nbsp;creating a basemap based on a ArcGISTiledLayer that is coming from a Uri that requires credentials...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here's what I'm doing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="font-family: terminal, monaco, monospace; font-size: 11px;"&gt;&amp;nbsp;CurrentBasemapUrl = "&lt;A class="link-titled" href="https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer" title="https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer"&gt;https://tiledbasemaps.arcgis.com/arcgis/rest/services/World_Street_Map/MapServer&lt;/A&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var server = CurrentBasemapUrl; // "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fmaps.gvs.nga.mil%2Farcgis%2Frest%2Fservices%2FBasemap%2FNGA_World_Imagery_2D%2FMapServer" rel="nofollow" target="_blank"&gt;https://maps.gvs.nga.mil/arcgis/rest/services/Basemap/NGA_World_Imagery_2D/MapServer&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&amp;nbsp;Esri.ArcGISRuntime.Security.AuthenticationManager.Current.ChallengeHandler = new ChallengeHandler(myChallengeHandler);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&amp;nbsp;myMap.Basemap = new Basemap(&lt;/SPAN&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;new ArcGISTiledLayer(new Uri(server)));&lt;/SPAN&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for myChallengeHandler, I have this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt; static async Task&amp;lt;Credential&amp;gt; myChallengeHandler(CredentialRequestInfo cri)&lt;BR /&gt; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp;switch(cri.AuthenticationType)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; case AuthenticationType.Token:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var options = new Esri.ArcGISRuntime.Security.GenerateTokenOptions() {&amp;nbsp;Referer = new Uri(CurrentBasemapUrl)};&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var user = "myusernameishere";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var pass = "mypasswordishere";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cred = await AuthenticationManager.Current.GenerateCredentialAsync(&lt;BR /&gt;&lt;SPAN&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;new Uri("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fwww.arcgis.com%2Fsharing%2Frest%2Fgeneratetoken" rel="nofollow" target="_blank"&gt;https://www.arcgis.com/sharing/rest/generatetoken&lt;/A&gt;&lt;SPAN&gt;"),user, pass, options);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 11px; font-family: terminal, monaco, monospace;"&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return cred;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;return null;&lt;BR /&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;when I do this, all I get is a grid, no maps. But I'm not getting any errors. Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the same URL, I was able to successfully download a tile package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the URL to "&lt;A class="jivelink3" href="http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer" title="http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer"&gt;http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer&lt;/A&gt;" (which doesn't require any creditials, it works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 19:59:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432232#M5237</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-08T19:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432233#M5238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the layer have a load error? If not, also check the layer's LayerViewState that's being reported by the MapView&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 21:13:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432233#M5238</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-02-08T21:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432234#M5239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Morten,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't get any error at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I call _mapView.GetLayerViewState with my layer, i get:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Error: null&lt;/LI&gt;&lt;LI&gt;Status: Active&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I look at the layer, it says:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;LoadError: null&lt;/LI&gt;&lt;LI&gt;LoadStatus: Loaded&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The layer contains information (such as the Attribution) that MUST have loaded from the internet, so I'm sure it's getting there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 21:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432234#M5239</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-08T21:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432235#M5240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is very odd. Are you seeing web requests for&amp;nbsp;tiles being made? (you can use Fiddler (&lt;A href="http://www.fiddlertool.com"&gt;www.fiddlertool.com&lt;/A&gt;) to monitor that)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 22:08:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432235#M5240</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-02-08T22:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432236#M5241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A long shot but just in case could you also make sure that the MapView has the same spatial reference than the layer you are using after the map is loaded?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2017 10:27:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432236#M5241</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2017-02-09T10:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432237#M5242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Morten,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interesting note, if I add the token credential to the AuthenticationManager rather than use the challenge method, the map data loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From using Fiddler, it appears that when using the challenge method that the subsequent requests are returned with a 499 error (which implies the token hasn't been passed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, this doesn't really solve my problem, as what I'm really trying to do is hit a server that requires X509 (Smart Card) to access, and it doesn't seem to help to generate the creditial before hand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really, what I need is better debugging into what is happening. I'm probably send the wrong cert or something, but I'm not seeing any error or exceptions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2017 16:23:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432237#M5242</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-09T16:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432238#M5243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, things are odder...to me anyway...Hitting my server that's X509 protected, I now see that I am getting map tiles back in fiddler, but they are not displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure if Antti's comment below (about the spatial reference) is valid or not, but the tiled later is coming in with an SR of 4326 (WGS84), and my map is 3857 (WebMercator)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2017 19:04:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432238#M5243</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-09T19:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432239#M5244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I guess Antti said it was a long shot, but it appears, at least for the map side, that it was the problem. I changed my map so that it was new Map(SpatialReference.Wgs84) and now my map loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, to try to get the Scene to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2017 16:00:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432239#M5244</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-10T16:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using basemaps requiring credentials</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432240#M5245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to be the case...nice catch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basemap in this case was Wgs84 (4326) and I was originating my Map as WebMercator. I found that I need to create a new Map with this as a basemap and then it loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2017 16:04:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-basemaps-requiring-credentials/m-p/432240#M5245</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-02-10T16:04:28Z</dc:date>
    </item>
  </channel>
</rss>

