<?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: Where can I download ArcGIS Runtime for Java 10.2 version? in Java Maps SDK Questions</title>
    <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413958#M1287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue I face, seems to be related to the not-satisfactory privileges to some files/ operating system or hardware-specific problem. I successfully ran the sample local raster app on the server machine (windows server 2008 r2) and apparently, local server works just fine. However, the issue exists on lenovo and hp laptop with windows 7 and windows 8 installed accordingly. The exception is raised when trying to start no matter what .mpk containg raster data. Just to mention, the issue does not appear when working with shapefiles and displaying them using local server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please list the privilege requirements to successfully start-up the local raster with raster dynamic layer? Can you give me any hint in this subject?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is also related to &lt;A href="https://community.esri.com/thread/115989"&gt;ArcGIS Runtime for Java 10.2.4 - com.esri.core.io.EsriServiceException:&lt;/A&gt; As a matter of fact, the same error is raised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 May 2016 08:46:22 GMT</pubDate>
    <dc:creator>nita14</dc:creator>
    <dc:date>2016-05-16T08:46:22Z</dc:date>
    <item>
      <title>Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413954#M1283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no such install package on develoeprs.arcgis.com. Does anybody know if it is still available for download?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2016 05:41:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413954#M1283</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2016-04-28T05:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413955#M1284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The earliest download we have available on &lt;A href="https://developers.arcgis.com/downloads/" title="https://developers.arcgis.com/downloads/"&gt;SDK Downloads | ArcGIS for Developers&lt;/A&gt; is 10.2.3. Is there something specific in 10.2 you were looking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 21:53:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413955#M1284</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2016-05-03T21:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413956#M1285</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;&lt;/P&gt;&lt;P&gt;Indeed, I am wondering if ArcGIS Runtime for Java prior to 10.2.3 also crashes when trying to add raster dynamically using local server (based on runtime sample code).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;DynamicLayerInfoCollection layerInfos = localDynamicLayer
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .getDynamicLayerInfos();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DynamicLayerInfo layerInfo = layerInfos.get(0);


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Create the raster data source
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RasterDtaSource dataSource = new RasterDataSource();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dataSource.setWorkspaceId(workspaceId);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dataSource.setDataSourceName(fileNameRaw);


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Set the data source
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LayerDataSource layerDataSource = new LayerDataSource();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerDataSource.setDataSource(dataSource);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfo.setLayerSource(layerDataSource);


&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; localDynamicLayer.refresh();&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At line 15, the following error always occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;com.esri.core.io.EsriServiceException: Server Error
&amp;nbsp; at com.esri.core.internal.io.handler.c.a(Unknown Source)
&amp;nbsp; at com.esri.core.internal.io.handler.h$1.handleResponse(Unknown Source)
&amp;nbsp; at com.esri.core.internal.io.handler.h$1.handleResponse(Unknown Source)
&amp;nbsp; at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:735)
&amp;nbsp; at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:709)
&amp;nbsp; at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:700)
&amp;nbsp; at com.esri.core.internal.io.handler.h.a(Unknown Source)
&amp;nbsp; at com.esri.core.internal.io.handler.h.a(Unknown Source)
&amp;nbsp; at com.esri.core.internal.tasks.ags.v.a(Unknown Source)
&amp;nbsp; at com.esri.core.internal.tasks.ags.v.execute(Unknown Source)
&amp;nbsp; at com.esri.core.internal.tasks.a.call(Unknown Source)
&amp;nbsp; at java.util.concurrent.FutureTask.run(Unknown Source)
&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
&amp;nbsp; at java.lang.Thread.run(Unknown Source)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how can I get the older version of Runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:46:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413956#M1285</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2021-12-11T18:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413957#M1286</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;&lt;/P&gt;&lt;P&gt;Do you have any good news?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 May 2016 12:31:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413957#M1286</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2016-05-15T12:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413958#M1287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue I face, seems to be related to the not-satisfactory privileges to some files/ operating system or hardware-specific problem. I successfully ran the sample local raster app on the server machine (windows server 2008 r2) and apparently, local server works just fine. However, the issue exists on lenovo and hp laptop with windows 7 and windows 8 installed accordingly. The exception is raised when trying to start no matter what .mpk containg raster data. Just to mention, the issue does not appear when working with shapefiles and displaying them using local server. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please list the privilege requirements to successfully start-up the local raster with raster dynamic layer? Can you give me any hint in this subject?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is also related to &lt;A href="https://community.esri.com/thread/115989"&gt;ArcGIS Runtime for Java 10.2.4 - com.esri.core.io.EsriServiceException:&lt;/A&gt; As a matter of fact, the same error is raised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 08:46:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413958#M1287</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2016-05-16T08:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413959#M1288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam,&lt;/P&gt;&lt;P&gt;Sorry for the delay.&lt;/P&gt;&lt;P&gt;You can order 10.2 from Customer Service.&lt;/P&gt;&lt;P&gt; Just &lt;SPAN class="s1"&gt;ask for part number 138115, even though it also has WPF (cough), it is in stock and ready to order.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="s1"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="s1"&gt;Helps?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2016 18:10:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413959#M1288</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2016-05-17T18:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Where can I download ArcGIS Runtime for Java 10.2 version?</title>
      <link>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413960#M1289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 05:37:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/java-maps-sdk-questions/where-can-i-download-arcgis-runtime-for-java-10-2/m-p/413960#M1289</guid>
      <dc:creator>nita14</dc:creator>
      <dc:date>2016-05-20T05:37:28Z</dc:date>
    </item>
  </channel>
</rss>

