<?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: SetLicense and empty map in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330756#M12130</link>
    <description>&lt;P&gt;Thank you for your feedback.&lt;/P&gt;&lt;P&gt;The lite license string is not a dummy string as it is only shown after being authenticated. Another post (&lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/how-to-get-runtimelite-license-with-the-new-site/td-p/1022126" target="_self"&gt;https://community.esri.com/t5/net-maps-sdk-questions/how-to-get-runtimelite-license-with-the-new-site/td-p/1022126&lt;/A&gt;) seems to indicate that I am getting the lite license string from the correct location.&lt;/P&gt;&lt;P&gt;Why do I keep getting this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ArcGIS Maps SDK: Load Error: Map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esri.ArcGISRuntime.ArcGISRuntimeException&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Unlicensed feature.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;When I am providing my Runtime lite license string from what the good webpage:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/get-a-license/#your-lite-license-string" target="_self"&gt;https://developers.arcgis.com/net/license-and-deployment/get-a-license/#your-lite-license-string&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your help&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Sep 2023 18:03:26 GMT</pubDate>
    <dc:creator>sylvainc</dc:creator>
    <dc:date>2023-09-20T18:03:26Z</dc:date>
    <item>
      <title>SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329174#M12109</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have developed my WinUI application in developer mode withe API key settings and it works fine:&lt;/P&gt;&lt;P&gt;protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)&lt;BR /&gt;{&lt;BR /&gt;ArcGISRuntimeEnvironment.ApiKey = "xxxx";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;m_window = new MainWindow();&lt;BR /&gt;m_window.Activate();&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;I want to prepare its release and added the Litelicense code available here: &lt;A href="https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app" target="_self"&gt;here&lt;/A&gt;&amp;nbsp; as follow:&lt;/P&gt;&lt;P&gt;protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)&lt;BR /&gt;{&lt;BR /&gt;// Note: it is not best practice to store API keys in source code.&lt;BR /&gt;// The API key is referenced here for the convenience of this tutorial.&lt;BR /&gt;ArcGISRuntimeEnvironment.ApiKey = "xxx";&lt;BR /&gt;ArcGISRuntimeEnvironment.SetLicense("runtimelite,1000,yyyy");&lt;/P&gt;&lt;P&gt;m_window = new MainWindow();&lt;BR /&gt;m_window.Activate();&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;but now my mapview is empty...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 17:34:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329174#M12109</guid>
      <dc:creator>sylvainc</dc:creator>
      <dc:date>2023-09-15T17:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329277#M12110</link>
      <description>&lt;P&gt;Are you getting any load errors on your map? You could perhaps check Map's load status and check why is map failing to load.&lt;/P&gt;&lt;P&gt;My suspicion is&amp;nbsp;either you map is secured or API key is conflicting with your License string. Remove API key from the code and try just the license string.&lt;/P&gt;&lt;P&gt;API Key&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 20:27:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329277#M12110</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2023-09-15T20:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329489#M12112</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;I have removed the API key and checked the map status. I have the following:&lt;/P&gt;&lt;P&gt;ArcGIS Maps SDK: Load Error: Map&lt;BR /&gt;Esri.ArcGISRuntime.ArcGISRuntimeException&lt;BR /&gt;Unlicensed feature.&lt;/P&gt;&lt;P data-unlink="true"&gt;So,the license string I got from &lt;A href="https://developers.arcgis.com/net/license-and-deployment/use-a-license-in-your-app/#how-to-use-a-license-string-in-your-app" target="_self"&gt;here&lt;/A&gt; seems to be the issue.&lt;/P&gt;&lt;P data-unlink="true"&gt;The license string looks like "runtimelite,1000,rudxxxx,none,1JPyyyy". If I replace "none" by some dates, it works but then I have the "Licensed for Developer Use only" being displayed.What am I doing wrong? Shouldn't the license string from the link above work without editing?&lt;/P&gt;&lt;P data-unlink="true"&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 09:15:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329489#M12112</guid>
      <dc:creator>sylvainc</dc:creator>
      <dc:date>2023-09-18T09:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329742#M12113</link>
      <description>&lt;P&gt;That License string in the sample code is just a dummy string. You need to put in an actual license string. For information on how to get a license for use in production app please see&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/get-a-license/" target="_blank"&gt;https://developers.arcgis.com/net/license-and-deployment/get-a-license/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 18:02:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1329742#M12113</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2023-09-18T18:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330451#M12125</link>
      <description>&lt;P&gt;Also see a related post :&amp;nbsp;&lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/challenge-handler-not-called-in-wpf/m-p/1195466" target="_blank"&gt;https://community.esri.com/t5/net-maps-sdk-questions/challenge-handler-not-called-in-wpf/m-p/1195466&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 23:02:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330451#M12125</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2023-09-19T23:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330756#M12130</link>
      <description>&lt;P&gt;Thank you for your feedback.&lt;/P&gt;&lt;P&gt;The lite license string is not a dummy string as it is only shown after being authenticated. Another post (&lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/how-to-get-runtimelite-license-with-the-new-site/td-p/1022126" target="_self"&gt;https://community.esri.com/t5/net-maps-sdk-questions/how-to-get-runtimelite-license-with-the-new-site/td-p/1022126&lt;/A&gt;) seems to indicate that I am getting the lite license string from the correct location.&lt;/P&gt;&lt;P&gt;Why do I keep getting this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ArcGIS Maps SDK: Load Error: Map&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Esri.ArcGISRuntime.ArcGISRuntimeException&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Unlicensed feature.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;When I am providing my Runtime lite license string from what the good webpage:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/get-a-license/#your-lite-license-string" target="_self"&gt;https://developers.arcgis.com/net/license-and-deployment/get-a-license/#your-lite-license-string&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your help&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 18:03:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330756#M12130</guid>
      <dc:creator>sylvainc</dc:creator>
      <dc:date>2023-09-20T18:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: SetLicense and empty map</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330772#M12131</link>
      <description>&lt;P&gt;Unlicensed feature error indicates that there are components in your map that requires more than current license level. So if you are using a valid lite license then perhaps your map contains something that requires more than lite license level.&lt;/P&gt;&lt;P&gt;You can review capabilities available in each license level&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/license-and-deployment/license-levels-and-capabilities/" target="_blank"&gt;https://developers.arcgis.com/net/license-and-deployment/license-levels-and-capabilities/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Or if you like you can share you map/app with me at &lt;A href="mailto:pmaske@esri.com" target="_blank"&gt;pmaske@esri.com&lt;/A&gt;&amp;nbsp;and I will be happy to take a look.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 18:33:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/setlicense-and-empty-map/m-p/1330772#M12131</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2023-09-20T18:33:50Z</dc:date>
    </item>
  </channel>
</rss>

