|
POST
|
v2.8 only supports Internet Explorer 7-9. Unfortunately, there is no matrix for version and browser support. In the future, you can go to this link to find the SDK version you are interested in. Download the SDK and go through the extracted folder to the jshelp folder (\arcgis_js_api\sdk\help\jshelp). Supported browsers can be found at the top of the page. Best, Brad Thanks very much Brad, that info is very helpful. Simon
... View more
04-24-2014
07:47 AM
|
0
|
0
|
1856
|
|
POST
|
Simon, as Michael stated, the current version of the JS API is 3.9. Version 2.X is currently a mature product, and will no longer be supported as of June 1, 2014. I would highly suggest migrating to version 3.9. Brad We have already migrated the latest version of our software to utilize 3.9, but an older previous version of our software that many of our clients still utilize was left at 2.8. I just need to know if 2.8 ever supported IE10 so I can tell clients its unsupported in that version of our software. There must be old documentation or a support matrix somewhere that has this info on what Js Api version supports what browsers no? Thanks again Simon
... View more
04-24-2014
05:43 AM
|
0
|
0
|
1856
|
|
POST
|
Is there a matrix somewhere that shows which versions of the ArcGIS JavaScript API support what browsers? Also, does anyone know at what version of the ArcGIS JavaScript API that IE10 was officially supported. I am seeing IE10 crash when using ArcGIS JavaScript API version 2.8. Thanks Simon
... View more
04-23-2014
11:37 AM
|
0
|
6
|
3898
|
|
POST
|
Figured out my own issue, it seems POSTS also require the port in the url, and in this case, its port 6080, so the url has to be http://maps2.iasworld.net:6080/arcgis/rest/services ........
... View more
01-08-2014
10:11 AM
|
0
|
0
|
1479
|
|
POST
|
Below is a sample of the request, as I said above, a GET works but POST fails against 10.2. Both POST and GET work against 10.1. http://maps2.iasworld.net/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task/execute?Web_Map_as_JSON={'mapOptions':{'extent':{'xmin':-10019083.038025,'ymin':4186363.952525,'xmax':-10019037.221875,'ymax':4186427.03037499,'spatialReference':{'wkid':102100}},'spatialReference':{'wkid':102100}},'operationalLayers':[{'id':'County_10_2','url':'http://at-dev-ags102:6080/arcgis/rest/services/Shelby_BaseMap_Add_Layers_sde/MapServer','title':'County_10_2','opacity':0.7},{'id':'graphicsLayer0','featureCollection':{'layers':[{'layerDefinition':{'name':'parcels','geometryType':'esriGeometryPolygon'},'featureSet':{'geometryType':'esriGeometryPolygon','features':[{'attributes':{'PARCELID':'040039 00002'},'geometry':{'rings':[[[-10019044.857899999,4186413.1715999991],[-10019049.543500001,4186374.4654999967],[-10019075.402000001,4186377.3224000032],[-10019071.062899999,4186416.5173999951],[-10019044.857899999,4186413.1715999991]]],'spatialReference':{'wkid':102100}},'symbol':{'color':[125, 125, 125,35],'outline':{'color':[255, 0, 0,255],'width':3,'type':'esriSLS','style':'esriSLSSolid'},'type':'esriSFS','style':'esriSFSSolid'}}]}}]}}],'exportOptions':{'outputSize':[700,700],'dpi':96}}&Format=PNG32&Layout_Template=MAP_ONLY&f=pjson Also Note, I am making these GET/POSTS from Server side in .Net via then following methods; private static string MakeHttpGetRequest(string sUrl) { HttpWebRequest httpReq = (HttpWebRequest)WebRequest.Create(sUrl); httpReq.Method = "GET"; WebResponse httpResp = httpReq.GetResponse(); Stream dataStream = httpResp.GetResponseStream(); StreamReader reader = new StreamReader(dataStream); string responseFromServer = reader.ReadToEnd(); return responseFromServer; } private static string MakeHttpPostRequest(string sUrl, string requestData) { HttpWebRequest httpReq2 = (HttpWebRequest)WebRequest.Create(sUrl); httpReq2.Method = "POST"; httpReq2.ContentLength = requestData.Length; StreamWriter streamWriter2 = null; streamWriter2 = new StreamWriter(httpReq2.GetRequestStream()); streamWriter2.Write(requestData); streamWriter2.Close(); WebResponse httpResp2 = httpReq2.GetResponse(); Stream dataStream2 = httpResp2.GetResponseStream(); StreamReader reader2 = new StreamReader(dataStream2); string responseFromServer = reader2.ReadToEnd(); return responseFromServer; }
... View more
01-08-2014
09:27 AM
|
0
|
0
|
1479
|
|
POST
|
I am getting this same error, but only when posting to a 10.2 Print Service (Execute Task (Export Web Map Task)). The same data posted to 10.1 works. Also, if I do a get with the same data on 10.1 or 10.2 it also succeeds, so it seems that there is some issue with a post against 10.2. Anyone find any fix, workaround or any suggestions? Thanks Simon
... View more
01-08-2014
09:22 AM
|
0
|
0
|
1479
|
|
POST
|
I'm having a problem getting my deployed app to run on a different machine. Under license builder, I specified "Testing" as license type. I copied the SetLicense string and put it in my application. I ran deployment builder and generated a deployment folder. I selected both x86 and x64 versions. I suspect it may be a directory issue. This is how it is set up. C:/ArcGISDemo/bin/Release/TestDeploy_1.0/ArcGISRuntime10.1.1 where my ArcGISDemo.exe is at: C:/ArcGISDemo/bin/Release/ArcGISDemo.exe With above configuration, I get an error when I launch that says: "System.Exception: Error initializing ArcGISRuntime. Unable to find ArcGISRuntime deployment folder..." OK, so I tried putting ArcGISRuntime10.1.1 in the same folder as ArcGISDemo.exe, and the application just crashes. I've also tried building the application for x64 and it still crashes. Did you try putting the ArcGIS Runtime deployment folder at the same level as the application exe and without the top level deployment folder? ie. C:/ArcGISDemo/bin/Release/ArcGISRuntime10.1.1 This is what works for me, although I am using 10.1 not 10.1.1, so perhaps something changed. Simon
... View more
05-21-2013
09:52 AM
|
0
|
0
|
1278
|
|
POST
|
It looks like the the ArcGIS runtime WPF API only supports looking for GPS devices connected to a serial port for location. Is there anyway of getting location based on wifi or cell triangulation if gps is not available? Or do I need to implement my own code using .Net 4 location api? System.Device.Location - http://msdn.microsoft.com/en-CA/library/system.device.location(v=vs.100).aspx If so has anyone done this with success or have a sample?
... View more
05-13-2013
10:11 AM
|
0
|
2
|
905
|
|
POST
|
Just tried another machine with same version of chrome and you're right 3.4 samples are working fine. Must be some strange setting or issue in chrome on that particular machine. Still strange that I only see the issue for v3.4 of the api and no previous versions, so it's something newly introduced or from the newer version of dojo.
... View more
03-26-2013
05:42 PM
|
0
|
0
|
2830
|
|
POST
|
Is anyone else seeing that map navigation (pan, zoom in/out) is broken in Chrome at ArcGIS JS API v3.4? I have tried several samples and map navigation is not working at all in Chrome. The same samples work fine in firefox and IE. Samples using older version of the API (3.2, 3.3) navigation works fine in Chrome. I have even taken a 3.4 sample and pointed it to 3.3 and navigation starts to work, so I believe this is a possible new bug. I have the latest version of Chrome Version 25.0.1364.172 m Simon
... View more
03-26-2013
06:38 AM
|
0
|
22
|
14107
|
|
POST
|
I would also like to know how to support the old info window. Actually I would like to know how I can support both old and new in the same map? To implement the new info window here is a good walk through; http://help.arcgis.com/en/webapi/javascript/arcgis/jshelp/intro_agspopup.html I don't see any 3.4 samples that show how to implement the old info window.
... View more
03-26-2013
06:29 AM
|
0
|
0
|
2185
|
|
POST
|
Does anyone know if there is an open ArcGIS Runtime SDK for WinRT Beta program coming soon?
... View more
02-07-2013
09:58 AM
|
0
|
0
|
761
|
|
POST
|
Thanks Kerrie, Is there any news on a release date, or approximate availability of the next release? Simon
... View more
11-13-2012
05:45 AM
|
0
|
0
|
550
|
|
POST
|
I have implemented the interactive legend similar to the interactive legend sample in the SDK Samples. In my application I need to use layers with Accelerated and Non-Accelerated Display, so I am using the AcceleratedDisplayLayers group layer. (<esri:AcceleratedDisplayLayers ...). What I figured out is that if a dynamic layer is added to this AcceleratedDisplayLayers group, then when toggling individual layers on/off in the interactive legend the map does not update to show the layer correctly on or off. If I change the map extent somehow after toggling, ie. pan, zoom, the map refreshes and it does show the correct layers on/off. I tried several workarounds such as manually calling layer.Refresh(), as well as a few others, with no success. If the same layers are not added to the AcceleratedDisplayLayers group they work fine and toggling them on/off results in the correct map refresh right away. This behavior can be duplicated by taking the Interactive Legend sample in the SDK Samples and placing the USA layer inside an AcceleratedDisplayLayers group layer. This may be a bug or a known limitation of using the AcceleratedDisplayLayers group layer, but I could not find such a limitation documented. Any help or workarounds would be greatly appreciated. Thanks Simon
... View more
11-12-2012
09:52 AM
|
0
|
2
|
958
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-29-2016 06:47 AM | |
| 1 | 12-15-2014 11:58 AM | |
| 4 | 06-24-2019 06:36 AM | |
| 1 | 10-29-2014 12:47 PM | |
| 1 | 10-07-2015 11:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-17-2024
06:34 PM
|