|
POST
|
Can you give further details? Version ArcGIS Server, part of source code for understand what you are doing.
... View more
08-06-2015
04:22 AM
|
0
|
0
|
1114
|
|
POST
|
you can use the pattern that use Esri for asynchronous task. You can see, for example, Export Tile ArcGIS REST API where the operation return a jobId and jobStatus. The operation return immediately jobId that you use in subsequent calls to method and when the jobStatus return 'Successed' (completed job) you get result. Your client check every x seconds the status of job.
... View more
08-06-2015
03:58 AM
|
0
|
0
|
1199
|
|
POST
|
you can use the pattern that use Esri for asynchronous task. You can see, for example, Export Tile ArcGIS REST API where the operation return a jobId and jobStatus. The operation return immediately jobId that you use in subsequent calls to method and when the jobStatus return 'Successed' (completed job) you get result. Your client check every x seconds the status of job.
... View more
08-06-2015
03:58 AM
|
0
|
1
|
1201
|
|
POST
|
if you use Linux you need convert in java. See Eric's Blog: Porting an ArcGIS Server Object Extension from C# to Java
... View more
07-22-2015
06:51 AM
|
0
|
1
|
1910
|
|
POST
|
Studioat.ArcGis.Soe.Rest.DSUtility.soe is a zip file so you can rename and see if there is the dll. you must not register dll when do you install ags have you checked also support .net extension ?
... View more
07-22-2015
06:04 AM
|
0
|
3
|
3012
|
|
POST
|
What's the browser that you are using? If you use IE with ESC enabled you have this problem
... View more
07-22-2015
03:02 AM
|
0
|
5
|
3012
|
|
POST
|
This is new link: http://www.arcgis.com/home/item.html?id=e3bfa7c991e34aa8872c937ca9169507 If you need a complete solution you can see Roads and Highways of Esri Roads and Highways | ArcGIS Resource Center
... View more
07-21-2015
12:28 PM
|
0
|
15
|
3012
|
|
POST
|
... There are some nonsimple data types (for example, network edges), must be versioned for you to edit them through a feature service. The following data types are not supported in feature services: Annotations Dimensions Group layers Layers and tables based on views Query layers that contain virtual columns, where clauses, or joins Raster datasets Terrains Layers that are part of nonsimple types, such as geometric networks, topologies, and network datasets, are supported, but the types themselves are not returned by the service. For example, you can query the layers that are part of a topology, but you cannot query the topology itself. ... Author feature services—Documentation (10.3 and 10.3.1) | ArcGIS for Server In soi you can access fine grained arcobjects (in init you have server object) so you can do your logic for geometric network using current user from login service
... View more
06-25-2015
07:43 AM
|
0
|
0
|
3398
|
|
POST
|
if you have installed sdk arcobject for .net or java you can see the examples: in net: C:\Program Files (x86)\ArcGIS\DeveloperKit10.3\Samples\ArcObjectsNet\ the folders are ServerApplyWatermarkSOI (sample add watermark after operation 'export') ServerSimpleLoggerSOI (sample for logging request from client) ServerLayerAccessSOI (sample layer level controls and conditionally give access to certain layers based on an external permissions file) ServerOperationAccessSOI (sample how to filter access to individual operations available on the map server) in java: C:\Program Files (x86)\ArcGIS\DeveloperKit10.3\java\samples\arcobjects\serverobjectinterceptors In help of visual studio (sdk arcobjects .net) or eclipse (sdk arcobjects.java) you have the documentation for develop in detail Here you have code practices Coding practices for extensions—Documentation (10.3 and 10.3.1) | ArcGIS for Server In my blog you can see a post about soi NicoGis - Sviluppare in ambiente ArcGIS...: Tutti pazzi per il SOI if you have more questions I have already developed soi so I can help you in details
... View more
06-22-2015
10:57 AM
|
1
|
0
|
2869
|
|
POST
|
if you need more flexibility,
you can develop a soi in c# or java (server object interceptor) and
create a service and by user to display
the individual layers in the service.
In sdk 10.3.1 see the example NetLayerAccessSOI
Important: with soi you don't need change logic/code on your client
... View more
06-22-2015
06:09 AM
|
0
|
2
|
2869
|
|
POST
|
JSON features based on ArcGIS REST API specification into a feature class . See ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
06-17-2015
12:19 PM
|
0
|
1
|
1502
|
|
POST
|
Yes you can only increase if fc is not empty because there isn't risk loss data FieldLength and nullability are only supported on internal interfaces. The Alter Field GP tool supports this in ArcGIS Pro.
... View more
06-01-2015
01:05 AM
|
0
|
1
|
2306
|
|
POST
|
you can do it because your featureclass is empty 42783 - Increase the character length for a text field in ArcMap
... View more
05-29-2015
06:27 AM
|
1
|
3
|
2306
|
|
POST
|
You can easily have your DNS servers point myalias.mydomain.com to a private IP address (e.g. 192.168.1.6 ). Certificate validation is based on the name.
... View more
05-27-2015
08:42 AM
|
1
|
0
|
2667
|
|
POST
|
For now you can follow these steps - you need to loop thru each extension of a layer - QI to IServerLayerExtension - if succeeded, you get hold of a PropertySet object using ServerProperties - then get/set value to the key named ‘ServiceLayerID’ For now you cannot enable ‘allow assignment of unique numeric IDs for map service publishing’ programmatically it is on a private interface. Esri peraphs adds it in 10.4 but not sure IMapDocument mapDocument = new MapDocumentClass();
mapDocument.Open("C:\\Temp\\MyProject.mxd");
IMap b = mapDocument.get_Map(0);
ILayerExtensions c = b.get_Layer(0) as ILayerExtensions;
IServerLayerExtension g = c.get_Extension(0) as IServerLayerExtension;
IPropertySet psN = new PropertySet();
psN.SetProperty("ServiceLayerID", 8);
g.ServerProperties = psN;
mapDocument.Save();
For table IMapDocument mapDocument = new MapDocumentClass();
mapDocument.Open(@"C:\\Temp\\MyProject.mxd");
IMap b = mapDocument.get_Map(0);
IStandaloneTableCollection c = b as IStandaloneTableCollection;
ITableExtensions d = c.get_StandaloneTable(0) as ITableExtensions;
IServerLayerExtension g = d.get_Extension(0) as IServerLayerExtension;
IPropertySet psN = new PropertySet();
psN.SetProperty("ServiceTableID", 8);
g.ServerProperties = psN;
mapDocument.Save();
... View more
05-07-2015
01:41 AM
|
3
|
6
|
8127
|
| 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
|