|
POST
|
Hi Eric, I don't have access to Esri's Technical Support as I am an EDN user only. As I suppose, there won't be any new release of ArcGIS Runtime, so I look forward to see the bug fixes in the Quartz final release. The sooner is the better! Thanks, Adam
... View more
12-22-2015
11:07 PM
|
1
|
0
|
2148
|
|
POST
|
Hi All, It seems that I found the issue. Unfortunately, It must be a bug in Runtime 10.2.4. After having enabled logging in LocalServer Utility, It turned out that ArcGIS Runtime sent a wrong-encoded request to the REST endpoint. There are many extra " and \ signs, which make the request invalid. Here is the wrong request made by Runtime: submitJob?input_rasters=["{\"format\":\"tif\",\"url\":\"http://localhost/lot1.tif\"}","{\"format\":\"tif\",\"url\":\"http://localhost/lot2.tif\"}","{\"format\":\"tif\",\"url\":\"http://localhost/lot3.tif\"}","{\"format\":\"tif\",\"url\":\"http://localhost/lot4.tif\"}"]&returnZ=false&returnM=false&f=json |The good request is below (tested in REST API endpoint): submitJob?input_rasters=[{ "url" : "http://localhost/lot1.tif", "format" : "tif" },{ "url" : "http://localhost/lot2.tif", "format" : "tif" },{ "url" : "http://localhost/lot3.tif", "format" : "tif" }]&returnZ=false&returnM=false&f=json Moreover, I would like to point out a few things: 1) Rest API, apparently, supports local path to the GPRasterDataLayer parameter in the following format { "url" : "C:/Tools/ChangeDetection/zm1wgs.tif", "format" : "tif" }. However, ArcGIS Runtime SDK 10.2.4 does NOT. When using " file:/// " prefix, Runtime creates this json: { "url" : "file:/C:/Tools/ChangeDetection/zm1wgs.tif", "format" : "tif" } which is in fact incorrect path. 2) "Mosaic To New Raster' tool is not supported when creating GPK from ArcGIS Desktop 10.3.1 (with MPK patch installed). Runtime shows the error: ERROR 000816: The tool is not valid. This must be a bug as well. When creating the same GPK from ArcGIS 10.2.2, the tool works as expected. 3) The input GPRasterDataLayer geoprocessing parameters can be defined as below. It works just fine GPRasterDataLayer rasterAfter = new GPRasterDataLayer("rasterAfter");
rasterAfter.setRasterDataUrl("http://localhost/zm1wgs.tif");
rasterAfter.setFormat("tif"); I hope, you find these comments useful, Regards, Adam Użyj zaawansowanego edytora
... View more
12-22-2015
07:09 AM
|
2
|
2
|
2148
|
|
POST
|
HI Oscar, It looks like it is ok. Check service endpoint WFSServer and WMSServer WFS : Ridstigar WMS: WMS Hope this helps. Adam
... View more
11-16-2015
05:22 AM
|
0
|
4
|
1802
|
|
POST
|
Hi Eray, First of all, you must check 'Enable ArcGIS Rutime tools' in ArcMap sharing options. Please check the screenshot below. Then author a map and click File >share as > Tile package. Regards, Adam
... View more
10-27-2015
04:13 AM
|
1
|
0
|
2481
|
|
POST
|
Hi, ad 1) It seems that ArcGIS 10.2.2 had a bug, not allowing to export tile cache using irregular shape (BUG-000083421). Tiled basemaps servers (what is recommended and used in tutorial) still use 10.2.2 version of ArcGIS. I have made a test with World_Street_Map (MapServer) which is 10.3 version of ArcGIS Server (this bug was addressed in this release), and it works as expected. It supports irregular shapes. Do not forget, that the boundary of export cache depends of requested scales (i.e tile sizes). The bigger the scale is, the output boundary is more accurate and more resembles the input geometry. ad 2) Indeed, you can give a shot. Tpk is just a zip file, so if you want, you can examine its structure and try to change the tiles inside of it. Normally, I wouldn't do it, just try to play around with 2 layers and set transparency accordingly. Hope this helps, Adam
... View more
10-24-2015
10:55 AM
|
1
|
0
|
5126
|
|
POST
|
Ehsan, Please attach printscreen of the geoprocessing output page. Are there any errrors returned? There is another option to get a Tile package from the Esri Basemaps: - Use Collector for ArcGIS to download tpk (offline workflow) and then copy tpk from your smartphone to PC. Take maps offline—Collector for ArcGIS | ArcGIS Regards, Adam
... View more
10-22-2015
05:43 AM
|
0
|
1
|
5126
|
|
POST
|
HI Eric, No, It was not, because, the time I discovered it, I has been already out of maintenance. Also you can take a look at Offline Geocoding engine which always returns 100 score for the first row, which is in fact irrelevant factor for geocoding accuracy. By the way, It is great that you allow free testing of SDKs and APis and support users via GeoNet. However, I think, the milestone will be the free bug reports for all developers. If you enable this, I am sure, you will receive greater feedback from the community and allowing you to build almost bug-free SDKs and APIs. Here is my ideas: ArcGIS Idea - Let us report the bugs for free Thank you for considering it, Adam
... View more
10-18-2015
11:29 PM
|
0
|
0
|
1267
|
|
POST
|
Hi Eray, There are two options: 1) If you want to use small area and create tpk from Esri Basemap on - demand. Check hehe: Creating tpk file 2) If you want t use your own GIS resources you must author a map (mxd) in ArcGIS Desktop (ArcMap) save it and then click menu File >Share as > Tile Package. Remember: First layer added to map, set it's spatial reference. Be sure to match tpk WKID with you business data WKID. Use tile package as described here: Local tiled layer | ArcGIS for Developers Hope this helps. Adam
... View more
10-15-2015
05:47 AM
|
2
|
3
|
2481
|
|
POST
|
Any news for this? Any plans to repair it in the Quartz release? Regards, Adam
... View more
09-29-2015
02:15 AM
|
0
|
1
|
1267
|
|
POST
|
Hi, As far as I know ArcGIS Runtime does not allow to create true-curved geometries. Please add support for creating circles, elliptical arc (without GeometryEngine) and Bezier curve geometries for Graphic Layers at least. To me, it is kind of a must for the next runtime release. Does anybody try to draw a circle using custom sketch tools? Regards, Adam
... View more
09-24-2015
08:29 AM
|
1
|
3
|
4968
|
|
POST
|
Hi Runtime Java Team, I would like to share with you one remark about the error logging. When the layer is uninitialized there should be more logging available. At 10.2.4 version there is no feedback from SDK what is going wrong. There should be logging enabled in debug mode too. In my case there was a conflict between Apache HttpClient 4.0.1 and 4.2.1 version resulting in ArcGISLocalDynamicMapServiceLayer and ArcGISTiledMapServiceLayer no displaying. Finally I got from LocalServer the following error which made my think about http client. Message : Server listening on : http://127.0.0.1:50001/arcgis/rest SEVERE [global] java.lang.NoSuchFieldError: DATE_PATTERNS at com.esri.core.internal.io.handler.c$a.<init>(Unknown Source) at com.esri.core.internal.io.handler.c$4.newInstance(Unknown Source) at org.apache.http.cookie.CookieSpecRegistry.getCookieSpec(CookieSpecRegistry.java:110) at org.apache.http.client.protocol.RequestAddCookies.process(RequestAddCookies.java:174) at org.apache.http.protocol.ImmutableHttpProcessor.process(ImmutableHttpProcessor.java:109) at org.apache.http.protocol.HttpRequestExecutor.preProcess(HttpRequestExecutor.java:176) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:515) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:1066) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:1044) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:1035) at com.esri.core.internal.io.handler.h.a(Unknown Source) at com.esri.core.internal.io.handler.h.a(Unknown Source) at com.esri.core.internal.tasks.ags.t.a(Unknown Source) at com.esri.core.internal.tasks.ags.t.execute(Unknown Source) at com.esri.map.Layer.loadServiceInfo(Unknown Source) at com.esri.map.Layer.getMapServerInfo(Unknown Source) at com.esri.map.ArcGISDynamicMapServiceLayer.internalInit(Unknown Source) at com.esri.client.local.ArcGISLocalDynamicMapServiceLayer.c(Unknown Source) at com.esri.client.local.ArcGISLocalDynamicMapServiceLayer.a(Unknown Source) at com.esri.client.local.ArcGISLocalDynamicMapServiceLayer$a.localServiceStartComplete(Unknown Source) at com.esri.client.local.LocalService.fireLocalServiceStartCompleteEvent(Unknown Source) at com.esri.client.local.LocalService.a(Unknown Source) at com.esri.client.local.LocalService$a.run(Unknown Source) Thank you for considering to add this feature in the next version of Runtime. Regards, Adam
... View more
09-24-2015
05:00 AM
|
0
|
1
|
2964
|
|
POST
|
Thank you for the quick overview what is coming in the next year. Regards, Adam
... View more
09-02-2015
10:52 PM
|
0
|
0
|
2872
|
|
POST
|
Hi Esri, I have some fundamental questions regarding ArcGIS Runtime Quartz Beta functional releases: - Will swing map control be available in the final release? - What types of local raster and vector data will be supported? According to Android demo from 2015 DevSummit, a MosaicDataset and the on-the-fly raster functions will be supported too. - Will NITF and GeoTIFF files be supported without the associated WORLD file? - Which layer types will support on-the-fly projection (in case of changing the map spatial reference)? - Will it be still Local Server? If yes, will it be 'true functional' copy of ArcGIS Server with all geoprocessing tools supported? Do you plan to add better support for local raster for geoprocessing (without necessity to uploading and getting ItemID of local data)? - What local analysis will support GPU? Will it be Viewshed2? Any others? - Will 3D be only available in connected mode? - When do plan to add custom dictionary renderer for displaying <removed> and custom symbology? - Are you going to add Full Motion Video functionality? Sadly, so far it is only available in ArcGIS for Desktop. Thank you in advance, Regards, Adam
... View more
09-01-2015
02:24 AM
|
0
|
8
|
6507
|
|
POST
|
HI Vince, To be specific, what about oracle 11.2.0.3.0 ? Is it compatible or do I need to upgrade all geodatabases to 10.3 version? Regards, Adam
... View more
08-23-2015
10:29 PM
|
0
|
2
|
1321
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-19-2024 12:19 PM | |
| 1 | 05-11-2016 06:36 AM | |
| 1 | 09-28-2023 08:17 AM | |
| 2 | 03-17-2021 12:09 PM | |
| 1 | 05-11-2016 10:40 PM |
| Online Status |
Offline
|
| Date Last Visited |
01-27-2026
04:05 AM
|