|
POST
|
OS supported of SDK are Windows and Linux (no Mac) . Here below the details of OS Linux: ArcGIS Enterprise SDK 11.0 system requirements—ArcGIS Enterprise | Documentation for ArcGIS Enterprise Windows: ArcGIS Enterprise SDK 11.0 system requirements—ArcGIS Enterprise | Documentation for ArcGIS Enterprise
... View more
10-14-2022
05:14 AM
|
1
|
0
|
1222
|
|
POST
|
RalfSchmidt, the idea is create a factory method that you can use for all methods soe. You call the method factory and it returns a guid. The factory method writes in 'server store' a record (guid, status (uninitialised), hasError, result, detail, ect). You call your method soe and provide your parameters soe and guid If your method soe 'see' guid check if it exists and has status uninitialised and while it runs update status (failed, completed, completedwitherrors ect), detail ecc. otherwise skip update record. Your method soe performs like any method sync but client check status using factory method (for same method factory you can create or provide the guid to check the status,result, haserror, details) The service of your method soe however is subject to timeout settings so you must set timeout for execution of method. If you use GP you lose benifits of caching soe (inizialize variables in costruct ect)
... View more
04-27-2022
03:18 AM
|
0
|
0
|
2060
|
|
POST
|
I remember that a problem related to the underlying db see for example https://stackoverflow.com/questions/3963617/why-is-1899-12-30-the-zero-date-in-access-sql-server-instead-of-12-31
... View more
02-09-2022
02:38 AM
|
0
|
0
|
942
|
|
POST
|
Hi Mody https://developers.arcgis.com/enterprise-sdk/guide/net/migration-strategies-net/ Yes geometric network, plugin data sources are not supported in the ArcGIS Enterprise SDK
... View more
01-23-2022
05:00 AM
|
0
|
0
|
1543
|
|
POST
|
https://pro.arcgis.com/en/pro-app/latest/get-started/arcgis-pro-system-requirements.htm
... View more
01-13-2022
06:28 AM
|
0
|
0
|
4066
|
|
POST
|
IMapServer3 mp = (IMapServer3)this.serverObjectHelper.ServerObject;
object[] name = new object[1];
object[] values = new object[1];
mp.DocumentInfo.GetAllProperties(out name[0], out values[0]);
object[] nameList = (object[])name[0];
object[] valueList = (object[])values[0]; it's the property 'keywords'
... View more
07-15-2021
10:45 AM
|
0
|
0
|
1358
|
|
POST
|
Hi, AlvaroA The Fields object passed to the relAttrFields parameter should not be an object retrieved from another class. If the new class is going to have the same fields as an existing class, cast the existing class' fields collection to the IClone interface, clone it, and use the cloned fields collection as input for this method. Can be help you ?
... View more
07-15-2021
09:35 AM
|
1
|
1
|
1233
|
|
POST
|
get IServerObjectHelper in init The server object helper implements a weak reference on a server object such that a server object extension can keep a string reference on the server object helper (for example, in a member variable) and avoid keeping a strong reference on the server object itself.
... View more
06-09-2021
06:24 AM
|
0
|
1
|
1879
|
|
POST
|
I also advide this link https://developers.arcgis.com/enterprise-sdk/guide/net/design-philosophy-for-arcgis-enterprise-sdk-net/
... View more
06-09-2021
06:10 AM
|
0
|
0
|
2183
|
|
POST
|
In c# you can deserialize: https://community.esri.com/t5/arcgis-enterprise-extensibility/soi-returning-pbf/td-p/1049024
... View more
06-07-2021
01:01 AM
|
0
|
0
|
1637
|
|
POST
|
try edit/view csproj because soe doesn't need this dll. when have you installed ags have you select '.NET support extension' ? You can see in Control Panel\All Control Panel Items\Programs and Features select arcgis and unistall/change and modify and next ...
... View more
06-06-2021
08:11 AM
|
0
|
0
|
1497
|
|
POST
|
SOE and SOI developed with Enterprise sdk always are ok after last ArcGIS Enterprise 10.9.x, part of the ArcGIS 2021 releases. You cannot use SOE and SOI developed with ArcObjects .NET/Java SDK in version released after last ArcGIS Enterprise 10.9.x, part of the ArcGIS 2021 releases because the ArcGIS 2022 releases of ArcGIS Enterprise will only contain the ArcGIS Pro-based runtime Removal of ArcMap-based runtime from ArcGIS Enterprise (esri.com)
... View more
06-06-2021
07:57 AM
|
1
|
2
|
2201
|
|
POST
|
Ciao Gianni, The FeatureCollection is an encoding of feature geographic and attribute data structures using the Protocol Binary Format (PBF). Notably, the FeatureCollection is an alternative encoding of a FeatureSet, ESRI's JSON encoding of Feature objects. Not only are FeatureCollections serialized differently through the use of a new binary specification, but they also have fundamental structural differences that developers will need to account for. here you can see the initial specification arcgis-pbf/proto/FeatureCollection at main · Esri/arcgis-pbf · GitHub you can generate your class in for example c# protoc.exe FeatureCollection.proto --csharp_out=C:/Temp/Scratch/out --proto_path=c:/Temp/Scratch/pbf you can download protoc.exe here Release Protocol Buffers v3.17.2 · protocolbuffers/protobuf · GitHub FeatureCollection.proto ( https://raw.githubusercontent.com/Esri/arcgis-pbf/main/proto/FeatureCollection/FeatureCollection.proto ) then with your class generated you can write similar code to deserialize pbf: FeatureCollectionPBuffer f = (File.ReadAllBytes(@"C:\Temp\Scratch\pbf\query")).ToObject<FeatureCollectionPBuffer>();
public static T ToObject<T>(this byte[] buf) where T : IMessage<T>, new()
{
if (buf == null)
return default(T);
using (MemoryStream ms = new MemoryStream())
{
ms.Write(buf, 0, buf.Length);
ms.Seek(0, SeekOrigin.Begin);
MessageParser<T> parser = new MessageParser<T>(() => new T());
return parser.ParseFrom(ms);
}
}
... View more
06-06-2021
07:37 AM
|
1
|
1
|
3166
|
| 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 |
09-10-2025
05:25 AM
|