<?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: com.esri.core.io.EsriServiceException: Not Found when trying to show objects layer in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176687#M1219</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for commenting, I'll create new post and I'll mention you&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 13 Jun 2015 09:19:02 GMT</pubDate>
    <dc:creator>SalihYalcin</dc:creator>
    <dc:date>2015-06-13T09:19:02Z</dc:date>
    <item>
      <title>com.esri.core.io.EsriServiceException: Not Found when trying to show objects layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176680#M1212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using ArcGIS to add two dynamic layer (one for the world map and yet another for Moscow, Russia). Then I have a dynamic layer with objects (like restaurants and such) for Moscow which I also add:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _baseWorldLayer = new ArcGISTiledMapServiceLayer( "http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _baseMoscowLayer = new ArcGISTiledMapServiceLayer( "http://atlas.mos.ru/ArcGIS/rest/services/EA/EA_Basemap/MapServer");
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _objectsLayer = new ArcGISDynamicMapServiceLayer("http://atlas.mos.ru/ArcGIS/rest/services/EA/Objects_map/MapServer");

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mapView.addLayer(_baseWorldLayer);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mapView.addLayer(_baseMoscowLayer);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mapView.addLayer(_objectsLayer);
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I then zoom to moscow:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public static final Location MOSCOW_LOCATION = new Location(55.752962D, 37.623196D);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
 _mapView.setOnStatusChangedListener(new OnStatusChangedListener() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; @Override
&amp;nbsp;&amp;nbsp;&amp;nbsp; public void onStatusChanged(Object source, STATUS status) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (OnStatusChangedListener.STATUS.INITIALIZED == status &amp;amp;&amp;amp; source == _mapView) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Show Moscow region on start&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;&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; // TODO: what is scale parameter?
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _mapView.zoomToScale(new Point(Constants.MOSCOW_LOCATION.longitude(),
&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;&amp;nbsp;&amp;nbsp; Constants.MOSCOW_LOCATION.latitude()),
&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;&amp;nbsp;&amp;nbsp; 0.2f);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
});
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now scrolling through the map I see a lot of:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; 
E/ArcGIS&amp;nbsp; (12117): ImageCallback.onError
E/ArcGIS&amp;nbsp; (12117): com.esri.core.io.EsriServiceException: Not Found
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at com.esri.core.internal.b.a.b.a(Unknown Source)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at com.esri.core.internal.b.a.a.a(Unknown Source)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at com.esri.core.internal.a.a.g.b(Unknown Source)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at com.esri.android.map.ags.ArcGISDynamicMapServiceLayer.getImage(Unknown Source)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at com.esri.android.map.DynamicLayer$1.run(Unknown Source)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.util.concurrent.FutureTask.run(FutureTask.java:137)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1068)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:561)
E/ArcGIS&amp;nbsp; (12117):&amp;nbsp; at java.lang.Thread.run(Thread.java:1096)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and also no images in the objects layer are shown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why can this happen? Same exactly code for the iOS does the thing..&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 08:52:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176680#M1212</guid>
      <dc:creator>SergeiRiaguzov</dc:creator>
      <dc:date>2012-07-20T08:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects laye</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176681#M1213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This appears to be a problem with the layer, since after checking iOS and WP7 code doesn't work either, so this is not a problem with the library.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jul 2012 18:33:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176681#M1213</guid>
      <dc:creator>SergeiRiaguzov</dc:creator>
      <dc:date>2012-07-21T18:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects laye</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176682#M1214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks like this is a problem with the Android version of the library after all. The following code works nicely on WinPhone:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
ArcGISTiledMapServiceLayer*BaseMap = new ArcGISTiledMapServiceLayer();
BaseMap.Url = "http://atlas.mos.ru/ArcGIS/rest/services/EA/EA_Basemap/MapServer";
BaseMap.ID = "BaseMap";
MyMap.Layers.Add(BaseMap);

ArcGISDynamicMapServiceLayer Objects = new ArcGISDynamicMapServiceLayer();
Objects.ID = "Objects";
Objects.Visible = true;
Objects.Url = "http://atlas.mos.ru/ArcGIS/rest/services/EA/Objects_map/MapServer";
MyMap.Layers.Add(Objects);

((ArcGISDynamicMapServiceLayer)MyMap.Layers["Objects"]).VisibleLayers = new int[]{65};
((ArcGISDynamicMapServiceLayer)MyMap.Layers["Objects"]).Refresh();
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following code also works on iOS:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
AGSTiledMapServiceLayer *baseMoscowLayer = [[[AGSTiledMapServiceLayer alloc] initWithURL:[NSURL URLWithString:kBaseMoscowLayerUrlString]] autorelease];
UIView&amp;lt;AGSLayerView&amp;gt; *baseMoscowLayerView = [self.mapView addMapLayer:baseMoscowLayer withName:kBaseMoscowLayerName]; 
baseMoscowLayerView.drawDuringPanning = YES;
baseMoscowLayerView.drawDuringZooming = YES;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
AGSDynamicMapServiceLayer *objectsLayer = [[[AGSDynamicMapServiceLayer alloc] initWithURL:[NSURL URLWithString:kObjectsLayerUrlString]] autorelease];
objectsLayer.visibleLayers = [NSArray arrayWithObjects:[NSNumber numberWithInt:65], nil];
objectsLayer.layerDefinitions = self.parkingsDefinitions;
[self.mapView addMapLayer:objectsLayer withName:kObjectsLayerName];
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both those code snippets show museums objects on the map on WinPhone and iOS. However the exact same code for Android ends up with the exception:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
E/ArcGIS *(27953): ImageCallback.onError
E/ArcGIS *(27953): com.esri.core.io.EsriServiceException: Not Found
E/ArcGIS *(27953):&amp;nbsp; * *at com.esri.core.internal.b.a.b.a(Unknown Source)
E/ArcGIS *(27953):&amp;nbsp; * *at com.esri.core.internal.b.a.a.a(Unknown Source)
E/ArcGIS *(27953):&amp;nbsp; * *at com.esri.core.internal.a.a.g.b(Unknown Source)
E/ArcGIS *(27953):&amp;nbsp; * *at com.esri.android.map.ags.ArcGISDynamicMapServiceLayer.getImage(Unknown Source)
E/ArcGIS *(27953):&amp;nbsp; * *at com.esri.android.map.DynamicLayer$1.run(Unknown Source)
E/ArcGIS *(27953):&amp;nbsp; * *at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
E/ArcGIS *(27953):&amp;nbsp; * *at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
E/ArcGIS *(27953):&amp;nbsp; * *at java.util.concurrent.FutureTask.run(FutureTask.java:137)
E/ArcGIS *(27953):&amp;nbsp; * *at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1068)
E/ArcGIS *(27953):&amp;nbsp; * *at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:561)
E/ArcGIS *(27953):&amp;nbsp; * *at java.lang.Thread.run(Thread.java:1096)
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and no museums are shown even though I'm seeing GET requests in sniffer like those:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
GET http://31.13.60.167/ArcGIS/rest/services/EA/Objects_map/MapServer/export?f=image&amp;amp;bbox=4150239.66999977%2C7454656.409465957%2C4231797.947144982%2C7558388.343210025&amp;amp;bboxSR=102100&amp;amp;size=320%2C407&amp;amp;format=png&amp;amp;transparent=true&amp;amp;dpi=159&amp;amp;imageSR=102100&amp;amp;layers=hide%3A1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C27%2C28%2C29%2C30%2C31%2C32%2C33%2C34%2C35%2C36%2C37%2C38%2C40%2C41%2C42%2C43%2C44%2C45%2C46%2C47%2C48%2C49%2C50%2C51%2C53%2C54%2C55%2C56%2C57%2C58%2C59%2C60%2C61%2C62%2C63%2C64%2C66%2C67%2C68%2C69%2C70%2C71%2C72%2C73%2C74%2C75%2C76%2C77%2C79%2C80%2C81%2C82%2C83%2C84%2C85%2C86%2C87%2C88%2C89%2C90%2C92%2C93%2C94%2C95%2C96%2C97%2C98%2C99%2C100%2C101%2C102%2C103%2C105%2C106%2C107%2C108%2C109%2C110%2C111%2C112%2C113%2C114%2C115%2C116%2C118%2C119%2C120%2C121%2C122%2C123%2C124%2C125%2C126%2C127%2C128%2C129%2C131%2C132%2C133%2C134%2C135%2C136%2C137%2C138%2C139%2C140%2C141%2C142%2C144%2C145%2C146%2C147%2C148%2C149%2C150%2C151%2C152%2C153%2C154%2C155%2C157%2C158%2C159%2C160%2C161%2C162%2C163%2C164%2C165%2C166%2C167%2C168%2C170%2C171%2C172%2C173%2C174%2C175%2C176%2C177%2C178%2C179%2C180%2C181%2C183%2C184%2C185%2C186%2C187%2C188%2C189%2C190%2C191%2C192%2C193%2C194%2C196%2C197%2C198%2C199%2C200%2C201%2C202%2C203%2C204%2C205%2C206%2C207%2C209%2C210%2C211%2C212%2C213%2C214%2C215%2C216%2C217%2C218%2C219%2C220%2C222%2C223%2C224%2C225%2C226%2C227%2C228%2C229%2C230%2C231%2C232%2C233%2C235%2C236%2C237%2C238%2C239%2C240%2C241%2C242%2C243%2C244%2C245%2C246%2C248%2C249%2C250%2C251%2C252%2C253%2C254%2C255%2C256%2C257%2C258%2C259%2C261%2C262%2C263%2C264%2C265%2C266%2C267%2C268%2C269%2C270%2C271%2C272%2C274%2C275%2C276%2C277%2C278%2C279%2C280%2C281%2C282%2C283%2C284%2C285%2C287%2C288%2C289%2C290%2C291%2C292%2C293%2C294%2C295%2C296%2C297%2C298%2C300%2C301%2C302%2C303%2C304%2C305%2C306%2C307%2C308%2C309%2C310%2C311%2C313%2C314%2C315%2C316%2C317%2C318%2C319%2C320%2C321%2C322%2C323%2C324%2C326%2C327%2C328%2C329%2C330%2C331%2C332%2C333%2C334%2C335%2C336%2C337%2C339%2C340%2C341%2C34
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so the images from the layer are downloaded on the phone but not shown. I've decompiled the ArcGIS library but it is hard to understand something from the obfuscated code (I cannot find the exact place where com.esri.core.internal.b.a.b.a ends up with en exception).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Here are the exact steps to reproduce the problem:&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;install ArcGIS plugin as described here: &lt;A href="http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Installing_the_SDK/01190000002m000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Installing_the_SDK/01190000002m000000/&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;create hello world example as described here: &lt;A href="http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Hello_World_Map/011900000005000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://help.arcgis.com/en/arcgismobile/10.0/apis/android/help/#/Hello_World_Map/011900000005000000/&lt;/A&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;change this:&lt;/LI&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
map.addLayer(new ArcGISTiledMapServiceLayer("" +
"http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"));
&lt;/PRE&gt;&lt;BR /&gt;to this:&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
ArcGISTiledMapServiceLayer baseMoscowLayer = new ArcGISTiledMapServiceLayer("http://atlas.mos.ru/ArcGIS/rest/services/EA/EA_Basemap/MapServer");
ArcGISDynamicMapServiceLayer objectsLayer = new ArcGISDynamicMapServiceLayer("http://atlas.mos.ru/ArcGIS/rest/services/EA/Objects_map/MapServer", new int[] {65});
objectsLayer.setVisible(true);
map.addLayer(baseMoscowLayer);
map.addLayer(objectsLayer);
&lt;/PRE&gt;&lt;BR /&gt;&lt;LI&gt;run&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;BR /&gt;&lt;SPAN&gt;effect: no objects shown on map and exceptions in log.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe someone having access to the library code (not obfuscated) can tell me where exactly the exception is thrown?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll appreciate any help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:05:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176682#M1214</guid>
      <dc:creator>SergeiRiaguzov</dc:creator>
      <dc:date>2021-12-11T09:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects laye</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176683#M1215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having the same problem when adding a ArcGISDynamicMapServiceLayer over a ArcGISTiledMapServiceLayer. Did you find any solution?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2012 14:21:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176683#M1215</guid>
      <dc:creator>AlejandroCañas</dc:creator>
      <dc:date>2012-12-05T14:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects laye</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176684#M1216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am getting this exact same problem as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Adding to it I get everything plus&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;com.esri.core.io.EsriServiceException: Image width is not in range. Valid range is from 1 to 2048.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What does this mean?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2013 21:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176684#M1216</guid>
      <dc:creator>BrianMulcahy</dc:creator>
      <dc:date>2013-02-05T21:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176685#M1217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about this issue ? Is this solved yet or still continue ? I'm facing this issue too. When I want to addlayer to map, it gives me esriserviceexception error and map tiles load slowly. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jun 2015 08:38:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176685#M1217</guid>
      <dc:creator>SalihYalcin</dc:creator>
      <dc:date>2015-06-12T08:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176686#M1218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this post is old and has many unrelated issues (most of them point to the service end point not being available rather than a bug in the api). Please create a new post showing the exact issue you are facing&amp;nbsp; and the code you are using.&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;Will&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jun 2015 00:03:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176686#M1218</guid>
      <dc:creator>WillCrick</dc:creator>
      <dc:date>2015-06-13T00:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: com.esri.core.io.EsriServiceException: Not Found when trying to show objects layer</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176687#M1219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for commenting, I'll create new post and I'll mention you&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jun 2015 09:19:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/com-esri-core-io-esriserviceexception-not-found/m-p/176687#M1219</guid>
      <dc:creator>SalihYalcin</dc:creator>
      <dc:date>2015-06-13T09:19:02Z</dc:date>
    </item>
  </channel>
</rss>

