|
POST
|
I don't know but if it is missing you can use 'add field' of gp (https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Geoprocessing)
... View more
10-12-2015
07:11 AM
|
0
|
1
|
6728
|
|
POST
|
if you need fine-grained for security layer ags or ogc(wms/wfs) you can create a soi (server object interceptor) that override the method of arcgis server. Your soi need implement IWebRequestHandler that intercept all ogc request soi to your service: http://server.arcgis.com/en/server/latest/publish-services/windows/about-extending-services.htm#ESRI_SECTION1_22386DF3305F42D4997F6F4301F8A8D5 Install sdk arcobjects and see help in vs (sdk c#) or eclipse (sdk java) and see also sample ServerLayerAccessSOI and ServerOperationAccessSOI
... View more
10-08-2015
09:06 AM
|
1
|
1
|
1229
|
|
POST
|
Scott, if you are interested I have developed it in c# for arcgis pro https://www.arcgis.com/home/item.html?id=7f6ea5c3f3444d22b4c0edfef2c799d5
... View more
10-05-2015
10:01 AM
|
2
|
0
|
1693
|
|
POST
|
if I write projection trasformation using wgs84 the create method crash. If I use another sr != 4326 the create method is OK. Is a bug? SpatialReference sr4326 = SpatialReferences.WGS84;
SpatialReference sr3857 = SpatialReferences.WebMercator;
ProjectionTransformation projTransFromSRs = ArcGIS.Core.Geometry.ProjectionTransformation.Create(sr3857,sr4326);
... View more
09-30-2015
10:26 AM
|
0
|
1
|
3536
|
|
POST
|
Had you try with FileReader client side js var f = $("mydata").files[0];
var reader = new FileReader();
reader.readAsDataURL(f); var mydata = reader.result; 'send via post' via server soe get your data file byte[] myDataBytes = System.Convert.FromBase64String('yourparameterstring');
... View more
09-23-2015
06:01 AM
|
0
|
1
|
1834
|
|
POST
|
excuse me, I haven't read with attention your question. I haven't tried but Esri does it, for example, with attachments ( http://help.arcgis.com/en/arcgisserver/10.0/apis/rest/fsaddattachment.html ) and use post with a multi-part request as per IETF RFC1867. I try and see it if possible.
... View more
09-21-2015
08:13 AM
|
0
|
0
|
1834
|
|
POST
|
For now the render of the page rest is managed from arcgis server (the parameters are in textarea html). It isn't possible
... View more
09-18-2015
10:12 AM
|
0
|
0
|
1095
|
|
POST
|
you can use the ArcGIS Server Administration Toolkit http://www.arcgis.com/home/item.html?id=12dde73e0e784e47818162b4d41ee340 if you need detail see the rest admin help http://resources.arcgis.com/en/help/arcgis-rest-api/02r3/02r3000001qr000000.htm
... View more
09-18-2015
09:33 AM
|
0
|
4
|
1834
|
|
POST
|
You can use my soe for get measures down an m polyline based on a user click on the line. For dynamically displaying point values on a polyline based on a table of measured events down that line depends if you have yet set in service this configuration or you need create on the fly the table and create the visualization on the fly. For this second approch I use a my soe. Esri has an Extension Desktop and Server for manager LRS http://desktop.arcgis.com/en/desktop/latest/guide-books/extensions/roads-and-highways/esri-roads-and-highways-for-server.htm see also: http://blogs.esri.com/esri/arcgis/2011/08/19/a-server-object-extension-for-performing-dynamic-segmentation/
... View more
09-08-2015
11:35 AM
|
0
|
5
|
2833
|
|
POST
|
IMapServer3 mapServer = this.GetMapServer();
IMapServerInit mapServerInit = mapServer as IMapServerInit;
string pathOutputAGS = mapServerInit.PhysicalOutputDirectory;
... View more
09-07-2015
05:18 AM
|
0
|
0
|
1329
|
|
POST
|
FYI: http://support.esri.com/en/knowledgebase/techarticles/detail/45362
... View more
08-31-2015
01:43 AM
|
2
|
4
|
4969
|
|
POST
|
for now you can plot http://jsbin.com/perovey/2/edit?html,css,js,output
... View more
08-28-2015
08:31 AM
|
1
|
0
|
1919
|
|
POST
|
Implementing layer-level access control If you implement layer level-access control through an SOI, you'll also need to configure ArcGIS Server's REST handler to disable caching of all layer resources included the service. This will allow you to intercept operations and filter out layers which are not allowed. You can disable this by setting the service's disableCaching property to true in the ArcGIS Server Administrator Directory. Open the ArcGIS Server Administrator Directory and sign in. The URL is typically formatted http://gisserver.domain.com:6080/arcgis/admin.. Click services and click the name of the desired service. If you don't see it in the list, it may be located within a folder in this directory.. Click edit.. In the properties section of the service JSON, add the disableCaching property and set its value to true, for example: "properties": { ... "disableCaching": "true", ... } Click Save Edits.. when you are in "after login" you are sure to be in the right trigger because every request passes there handleRESTRequest no matter what you are doing
... View more
08-13-2015
12:36 PM
|
1
|
3
|
4592
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-20-2024 11:20 AM | |
| 1 | 05-25-2017 10:11 AM | |
| 1 | 06-20-2023 12:09 AM | |
| 1 | 10-14-2022 05:14 AM | |
| 1 | 06-14-2023 02:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-18-2026
04:12 AM
|