<?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: Creating basic and standard deployments in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732452#M2207</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem, I want to load information(just for read, not for edition), I'm trying to use standard license, but if it easier using that kind of functionality please tell me how to do it, now I'm using a TPK(fro base map) and MPK for my info, I can identify on click or mouse over, is it possible to do it using "the new geodatabase format"?&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, 15 Aug 2014 18:14:48 GMT</pubDate>
    <dc:creator>MiguelMartinez1</dc:creator>
    <dc:date>2014-08-15T18:14:48Z</dc:date>
    <item>
      <title>Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732443#M2198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We would like to create two kinds of deployment for our customers. One basic deployment that comes as default with our software and another standard one that can be purchased as an upgrade.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Currently our mapping component is a single jar but it uses both basic and standard ESRI classes. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to use this jar for both deployment scenarios along with one deployment of the runtime? Or would we need to create two seperate jar's and runtime deployments to get this to work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2014 17:36:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732443#M2198</guid>
      <dc:creator>MichaelKnight</dc:creator>
      <dc:date>2014-06-05T17:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732444#M2199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is it possible to use this jar for both deployment scenarios along with one deployment of the runtime? Or would we need to create two separate jar's and runtime deployments to get this to work?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems to me that enabling/disabling application features based on license types initialized at start-up would allow you to use one jar. This can be determined by the &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/java/api-reference/com/esri/core/runtime/LicenseLevel.html"&gt;license level&lt;/A&gt;&lt;SPAN&gt; from &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/java/api-reference/com/esri/runtime/ArcGISRuntime.License.html#getLicenseLevel()"&gt;ArcGISRuntime&lt;/A&gt;&lt;SPAN&gt;. However, if you plan on using the &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/java/api-reference/com/esri/client/local/LocalServer.html"&gt;LocalServer&lt;/A&gt;&lt;SPAN&gt; for execution of "standard" features, you're going to have to figure out when to call it and what would you do instead of using it, e.g., loading map service layers vs. local tile layers that do not require server execution to the map. If you do this right, you may also get away with one deployment package as well (with all features included). You'll know immediately when a standard feature is being used that requires a standard license when you've initialized &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/java/api-reference/com/esri/runtime/ArcGISRuntime.html"&gt;ArcGISRuntime&lt;/A&gt;&lt;SPAN&gt; with a basic one. Those would be the ones I'd disable and inform users of the requirement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Carlos&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jun 2014 00:12:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732444#M2199</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-06-07T00:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732445#M2200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Carlos,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the response I will use the single jar approach. What is the easiest way of working our exactly what parts of the SDK lie within each license level for example dynamic workspaces?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I guess one way would be to just apply the basic license and see if I get any exceptions being thrown when using the software.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 06:10:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732445#M2200</guid>
      <dc:creator>MichaelKnight</dc:creator>
      <dc:date>2014-06-09T06:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732446#M2201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It seems that I cannot open a .mpk with a basic license is this correct?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 07:05:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732446#M2201</guid>
      <dc:creator>MichaelKnight</dc:creator>
      <dc:date>2014-06-09T07:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732447#M2202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Mike,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;An mpk file needs to use Local Server which is functionality which requires a Standard level license.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/java/guide/license-your-app.htm"&gt;https://developers.arcgis.com/java/guide/license-your-app.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you attempt to use this functionality with only a Basic license you will get an error in your application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 08:38:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732447#M2202</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2014-06-09T08:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732448#M2203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;It seems that I cannot open a .mpk with a basic license is this correct?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're fund of the look-and-feel of your map package, you could &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/0066/00660000045m000000.htm"&gt;create a tiled layer&lt;/A&gt;&lt;SPAN&gt; to replicate it, without all of the functions that can be done with map package contents. You should be able run your app in "basic" mode, then remove these tiled layers and load dynamic layers using your map packages once the license is upgraded on restart or "on-the-fly" (with some work).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What we've decided to do was licensed our app with a developer license when no license file is provided, but only because it suited our situation. As of 10.1.1, ArcGISRuntime warns users of the license being used on the deployed app for testing and evaluation only. I like what they've done at 10.2.3 in watermarking the map when using them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 11:37:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732448#M2203</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-06-09T11:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732449#M2204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We could create a .tpk file from our .mpk and then we could use it within the basic license. However we need a much higher resolution of map than a .tpk offers. We are often required to provide maps of CAD files for internal building schematics. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a result a .mpk file was best suited to us because it has no limit on the zoom.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2014 06:09:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732449#M2204</guid>
      <dc:creator>MichaelKnight</dc:creator>
      <dc:date>2014-06-16T06:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732450#M2205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tile packages (tpks) only work at fixes levels of detail, so you are limited to the scales you can zoom to.&amp;nbsp; This works fine when you know the zoom scales you are working at.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another alternative is to use the new geodatabase format.&amp;nbsp; You can export this from ArcMap or from a ArcGIS Server Feature Service.&amp;nbsp; If you are only using the data for read only (not editing it), you are free to use these with a Basic level license.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need any more information on this let us know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2014 06:37:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732450#M2205</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2014-06-16T06:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732451#M2206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That's interesting does this new format allow us to zoom in on data in a similar way to using a .mpk based map?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If so then I would certianly be interested in getting further information what SDK level does it require?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2014 08:20:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732451#M2206</guid>
      <dc:creator>MichaelKnight</dc:creator>
      <dc:date>2014-06-18T08:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732452#M2207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem, I want to load information(just for read, not for edition), I'm trying to use standard license, but if it easier using that kind of functionality please tell me how to do it, now I'm using a TPK(fro base map) and MPK for my info, I can identify on click or mouse over, is it possible to do it using "the new geodatabase format"?&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, 15 Aug 2014 18:14:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732452#M2207</guid>
      <dc:creator>MiguelMartinez1</dc:creator>
      <dc:date>2014-08-15T18:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732453#M2208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm a bit intrigued by this "new geodatabase format" that allows you to render its containing data using a basic license so long as it's read-only. Up to this point, I've had to use a standard deployment license just to render rasters off mosaic datasets from a geodatabase unto the map, with no editing capability, because of merely using the LocalServer class. Has this changed? I am interested in getting more information on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Aug 2014 22:12:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732453#M2208</guid>
      <dc:creator>CarlosColón-Maldonado</dc:creator>
      <dc:date>2014-08-15T22:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732454#M2209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this local geodatabase can be used as a datasource for your feature layers that get added to your map, and they behave just like connected feature layers: zoom in on the map, search and query, etc.&lt;/P&gt;&lt;P&gt;If all you need to do is visualize and query these feature layers, this is a BASIC-level licensing scenario.&lt;/P&gt;&lt;P&gt;If you want to edit these feature layers from the local geodatabase, while disconnected from Internet access, this is a STANDARD-level licensing scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2014 14:50:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732454#M2209</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2014-08-16T14:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732455#M2210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could it be possible to have some code sample for this ? &lt;/P&gt;&lt;P&gt;How to add this kind of Local Feature Layer to the map ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would be great. thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 12:32:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732455#M2210</guid>
      <dc:creator>JeremieJoalland1</dc:creator>
      <dc:date>2014-08-18T12:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732456#M2211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;It's just that I want to do, local data, identify, zoom in and zoom out, some code sample would be great!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 15:28:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732456#M2211</guid>
      <dc:creator>MiguelMartinez1</dc:creator>
      <dc:date>2014-08-18T15:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic and standard deployments</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732457#M2212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once you have a geodatabase file on the file system, you can add feature layers to the map from it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Geodatabase geodatabase = new Geodatabase(path);&lt;/P&gt;&lt;P&gt; GeodatabaseFeatureTable featureTable = geodatabase.getGeodatabaseFeatureTableByLayerId(0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // create a feature layer from the feature table&lt;/P&gt;&lt;P&gt;&amp;nbsp; featureLayer = new FeatureLayer(featureTable);&lt;/P&gt;&lt;P&gt;&amp;nbsp; map.getLayers().add(featureLayer);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the layer is in the Map, it behaves like any other full-fledged FeatureLayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 18:20:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/creating-basic-and-standard-deployments/m-p/732457#M2212</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2014-08-18T18:20:57Z</dc:date>
    </item>
  </channel>
</rss>

