|
POST
|
When publishing a geoprocessing service, you can choose to view the result of all tasks within the service as a map, see here Geoprocessing service settings: Parameters—Documentation | ArcGIS Enterprise Alternative you can store the results on a feature class (apply edits) and use this feature class on a dynamic service (use complex symbology). The results can be filtered (using definition query) base on a attribute you will calculate.
... View more
04-05-2017
03:20 AM
|
1
|
0
|
2057
|
|
POST
|
Also the Web App Builder can use this Geoprocessing service creating the upload UI and the show results UI.
... View more
04-05-2017
12:36 AM
|
0
|
0
|
2057
|
|
POST
|
A possible solution is to create a geoprocessing service for upload and convert the files to features the following example used foe convert the DWG to features import glob, zipfile, arcpy def dwgToFeatures(dwgFile): arcpy.AddMessage("dwgToFeatures") arcpy.CADToGeodatabase_conversion(dwgFile, arcpy.env.scratchGDB, "DWGTestData_CADToGeodatabase", "204657", "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 11258999068426,2;-1073,7418235 4194304001953,12;-100000 10000;8,98315284119522E-09;0,001;0,001;IsHighPrecision") return arcpy.env.scratchGDB + "/DWGTestData_CADToGeodatabase/Polygon" def ProcessInput(): sourceDWGFile = arcpy.GetParameterAsText(0) outputFeatureClass = dwgToFeatures(sourceDWGFile) arcpy.SetParameterAsText(1, outputFeatureClass) ProcessInput() then on the Javascript application create the Upload Form sent the uploaded file on the geoprocessing service and get the result features (don't forget to enable the upload service on the geoprocessing service) you can add the result features on a graphic layer on the map and/or apply the geometries on a feature service in order to store on the geodatabase. SAMPLE JS code to sent the file on the upload service --------------------------------------------------------------------------------------------------- var requestHandle = esri.request({ url: "GEOPROCESSING SERVICE URL", form: dojo.byId("uploadForm"), content: { f: "json" }, handleAs: "json", load: uploadSucceeded, error: uploadFailed }); SAMPLE JS code to sent the request on the geoprocessing service --------------------------------------------------------------------------------------------------- function uploadSucceeded(response, io) { ...... if(filetype === 'dwg'){ var params= { "uploadDWGFile": "{'itemID':" + itemID + "}" }; gpTaskdwg.setOutSpatialReference({wkid:102100}); gpTaskdwg.execute(params, displayResult, errorGP); } .... }
... View more
04-05-2017
12:35 AM
|
1
|
1
|
2057
|
|
POST
|
Hi Darko According to bug status fixed on version 3.20 BUG-000102090: JavaScript 3.19 graphic snapping does not work in Go..
... View more
03-29-2017
11:32 PM
|
0
|
3
|
1248
|
|
POST
|
Also you can try add the layer using URL from the hosted service copy the URL and add this url on scene
... View more
03-27-2017
12:16 AM
|
0
|
0
|
1054
|
|
POST
|
try the button more... in order to load more results
... View more
03-27-2017
12:10 AM
|
0
|
0
|
1054
|
|
POST
|
According to ESRI support pages is not supported environment yet. ArcGIS Server 10.5 system requirements—Installation Guides (10.5) | ArcGIS Enterprise
... View more
03-26-2017
11:57 PM
|
3
|
1
|
687
|
|
POST
|
Try to add this local table on the mxd and relate on ArcMap level this table with the feature class. Then publish as service this map. on the rest end point you will see that exist a relationship between feature class and table. From javascript api you can use the following example in order to retrive data from the related table Popup with related fields | ArcGIS API for JavaScript 3.20
... View more
03-10-2017
01:31 AM
|
0
|
0
|
876
|
|
POST
|
In order to change, remove or add Layout Templates for the default print service stop print service and edit the Layouts on the following path C:\Program Files\ArcGIS\Server\Templates\ExportWebMapTemplates for a second print service create a new folder with layouts on the same path C:\Program Files\ArcGIS\Server\Templates\
... View more
02-21-2017
12:52 AM
|
0
|
3
|
2900
|
|
POST
|
You can minimize from ArcGIS Server print service which Layout templates will be available. So you can create different print services with different Layout options Tutorial: Publishing additional services for printing—Documentation (10.5) | ArcGIS Enterprise this option will allow manage layout options from the print services with out any widget configuration.
... View more
02-21-2017
12:47 AM
|
0
|
0
|
2900
|
|
POST
|
I am not sure when this is planed to be fixed. You can try through the local Distributor for a fix, the BUG id is 000102090.
... View more
02-07-2017
05:44 AM
|
0
|
5
|
1248
|
|
POST
|
I will try to submit this problem. I will inform you about the results.
... View more
02-06-2017
03:25 AM
|
1
|
0
|
1990
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-05-2017 12:35 AM | |
| 1 | 02-15-2021 07:16 AM | |
| 1 | 02-15-2021 12:05 AM | |
| 1 | 02-15-2021 12:02 AM | |
| 2 | 12-21-2020 12:38 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-20-2025
06:08 AM
|