|
POST
|
Really nobody for this ? Thought it was a relevant question as the problem can quickly occurs if using parameters such as "Dynamic Layers" with big services. Have I missed anything ? Any hint on the way to go would be great. Cheers, Nicolas
... View more
04-20-2017
02:30 AM
|
0
|
13
|
1901
|
|
POST
|
Hello, I have an arcgis ArcGISDynamicMapServiceLayer with quite a big number of "layerDefinitions" applied with the "setLayerDefinitions" method. The problem is that the GET export REST function of ArcGIS Server 10.4.1 (with webadaptor on IIS) does not work as the request is too big so a POST would be necessary. It is stated in the documentation that "If the layer definition expression is longer than approximately 2000 characters you will need to set up a proxy page.". I configured the ESRI proxy GitHub project on my server and configured JS api (3.20) to always use the proxy: esriConfig.defaults.io.proxyUrl = "<url_to_proxy>"
esriConfig.defaults.io.alwaysUseProxy = true; The problem is that requests are still sent as GET operation so it does not work as well. How am I supposed to tell JS API to POST for export map operation either directly to the REST api or to the proxy ? Thanks for your help, Nicolas
... View more
04-04-2017
11:35 AM
|
0
|
14
|
3467
|
|
POST
|
Hi, I think it depends whether the job is run "synchronously" (ExecuteTask) or "asynchronously" (SubmitJob). Change the execution type to Synchronous and you will be able to "ExecuteTask" Nicolas
... View more
02-23-2017
06:45 AM
|
1
|
1
|
1335
|
|
POST
|
Hello Lloyd, Thanks for your answer. Indeed, I tried my vector tiles on different devices and it does work (tested on one plus and samsung galaxy) but unfortunately on mine, with the latest Chrome it does not work (with 4.2 JS API only) so I thought it was worth mentionning it as a kind of regression ? In case, you need more info about the browser, it is Chrome for Android 55.0.2883.91. running on a Wiko Bloom (https://fr.wikomobile.com/bloom-black/ ) Thanks, Nicolas
... View more
02-16-2017
07:54 AM
|
0
|
0
|
1011
|
|
POST
|
Hello, I just tested publishing vector tiles to AGOL and when testing it on various browsers I found out that my tiles were not displaying on an up to date Chrome for Android 55.0.2883.91. I thought at the beginning that it could come from my package so I switched to a very basic map with js api 4.2 using ESRI Vector tiles: map = new Map({ basemap: 'streets-navigation-vector' }); It turns out that they do not display as well. The debugger is full of the following warnings: "Data type is uint however extension OES_Element_index_unit is not supported therefore this draw call cannot be made." The browser is up to date and for example Mapbox vector tiles display properly either v8 or v9: var map = new mapboxgl.Map({ container: 'map', style: 'mapbox://styles/mapbox/streets-v8' }); So finally, I decided to switch to 4.1 ESRI JS API and it worked ! ESRI vector tiles displayed properly. Problem is that my vector tiles are not projected in WGS84 Web Mercator (auxiliary sphere) and it seems that it was not supported at 4.1. Hopefully it will be fixed in 4.3. This brings me to a second point : is it planned in ESRI JS API to detect if client support vector tiles ? Thanks, Nicolas
... View more
02-13-2017
09:40 AM
|
0
|
2
|
1456
|
|
IDEA
|
Hello, I think it would be good to add support for tileServers for basemap defined in AGOL or more generally in the webappconfig json. As it seems that it cannot be done on the server side contrary to what ESRI REST API documentation state: Define tile servers of tiled map services ArcGIS Server REST API So far it can only be used with defining an ArcGISTiledMapServiceLayer : ArcGISTiledMapServiceLayer | API Reference | ArcGIS API for JavaScript 3.19 So it cannot be easily integrated in the WebAppBuilder. Thanks, Nicolas
... View more
01-17-2017
02:53 AM
|
1
|
0
|
529
|
|
POST
|
Hello, I am trying to publish a toolbox with Arcpy and I cannot as when creating sddraft, I received an error stating : {(u'ERROR 001243: The XX/YYparameter is missing a syntax dialog explanation in the item description', 92): []} I tried to add a description to the arcpy parameter but that does not work so my question is, how do you add a description to a tool so as to avoid this error. There is no mention of it on the help: Defining parameters in a Python toolbox—Geoprocessing and Python | ArcGIS for Desktop The publishing works with ArcMap as long as I add a description manually but how to scripts that ? Many thanks for your help, Nicolas
... View more
12-09-2016
08:48 AM
|
0
|
0
|
1299
|
|
POST
|
All right Derek, thanks for your quick answer. Nicolas
... View more
10-06-2016
09:25 AM
|
0
|
0
|
530
|
|
POST
|
Hi Derek, Just to be sure, using Portal for SAML purpose means that you need as many 'named users' as there are people accessing secured services though people won't be using Portal for ArcGIS anyway ? Cheers, Nicolas
... View more
10-06-2016
06:50 AM
|
0
|
4
|
2503
|
|
POST
|
Hello, Is it possible to disable the possibility of signing on Portal for ArcGIS with ArcGIS account just like on ArcGIS Online in the SignIn options ? If not, is it scheduled at some point ? I am using Portal for ArcGIS 10.3.1 but I did not find it 10.4 documentation as well. Thanks, Nicolas
... View more
08-23-2016
06:24 AM
|
0
|
1
|
1578
|
|
POST
|
Hello Jon, I tested configuring Identity Provider initiated logins and it did not solve the problem (maybe I missed something but I don't think so). I think it is rather that you have to use OAuth 2.0 based authentication in the Javascript in order to get an 'SSO experience' Working with secure resources | Guide | ArcGIS API for JavaScript 3.17 And this did the solve the pop-up problem. Nicolas
... View more
08-23-2016
01:49 AM
|
0
|
1
|
3944
|
|
POST
|
Hi Jon, I am having the same kind of problem as Shafi and there is still something I don't understand: why is this pop up showing up instead of redirecting to the SP Portal is configured to deal with. Then, the SP would handle the rest. What have I missed ? Thanks, Nicolas
... View more
08-09-2016
06:34 AM
|
0
|
0
|
3944
|
|
POST
|
Hello Randall, In fact, what I would like to do is using a Tiled Service with subdomains as basemap in the JS API. But according to the JS documentation, it is only possible for 'WebTiledLayer' that is to say non-ESRI based : BasemapLayer | API Reference | ArcGIS API for JavaScript 3.1 So, I thought I could do just like in the following example where the baseMapLayer seems to retrieve the tiles servers property from the REST API : http://tryitlive.arcgis.com/CampusPlaceLocator/index.html Does it mean that there is no way to define an ESRI Tiled Service with subdomains as basemap (and be able to easily switch basemap) ? Thanks for your help, Nicolas
... View more
08-09-2016
02:20 AM
|
0
|
0
|
1199
|
|
POST
|
Hello Randall, Thanks for the answer. It is a bit strange though that it is in the REST documentation of the ArcGIS Server if you cannot define it when you have an ArcGIS Server.
... View more
08-05-2016
05:44 AM
|
0
|
1
|
1199
|
|
POST
|
Hi, Certainly a dummy question but I can't find where it is possible to define the 'tile servers' property of a tiled MapService. For example, on the REST API of the following service, we can read the property 'Tile servers' : http://tiles4.arcgis.com/tiles/Pu6Fai10JE2L2xUd/arcgis/rest/services/CampusGreyScale/MapServer I thought it was because it is an ArcGIS Server 10.4 and I am using 10.3.1 but according to the documentation it appeared at 10.1 ArcGIS Server REST API I did not find it neither at the publication of a cached service nor somewhere on the ArcGIS Server manager, so where is it ? What did I miss ? Many thanks for your help, Nicolas
... View more
08-04-2016
05:10 AM
|
0
|
4
|
2237
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-14-2025 07:12 AM | |
| 1 | 09-28-2025 09:14 AM | |
| 1 | 11-05-2024 01:46 AM | |
| 2 | 08-25-2025 03:13 AM | |
| 1 | 11-14-2025 01:24 AM |