Questions tagged [server-object-extension]
Server object extensions (SOEs) allow you to extend the base functionality of ArcGIS Server. Most SOEs do this by using ArcObjects code to work with geographic information system (GIS) data and maps. ArcObjects are the core components on which ArcGIS is built, and allow you the most flexibility in writing GIS functions.
38 questions
0
votes
1
answer
139
views
SOE file not built
I have quite a few C# projects, REST SOEs based on ArcObjects (.NET 4.5) or ArcGIS Pro (.NET 6.0). Visual Studio (2019) shows no errors, and warnings appear in the ArcGIS Pro projects only. Everything ...
1
vote
1
answer
434
views
"Service failed to start, CLSID for Type MapServer is not registered" Enterprise SOE
In ArcGIS Server Manager, I'm trying to add an SOE for our Enterprise env based on this walkthrough: https://developers.arcgis.com/enterprise-sdk/guide/net/walkthrough-for-rest-soes-net/
However ...
2
votes
0
answers
691
views
Handling errors from ArcGIS Feature Service applyEdits operation
When users calls applyEdits on our FeatureService, and get's something wrong with the request - it just returns "unable to complete operation".
Is it possible, to somehow get the detailed ...
0
votes
1
answer
148
views
Esri ArcObjects SOE
For my prototype I have published a service with one layer. The layer has 3 polygons with an entitlement attribute. Only one polygons entitlement is set to true. I need to write an SOE (in Java) to ...
1
vote
1
answer
254
views
Making SOI and SOE both work on same Map Service?
I have an SOE applied to a MapServer that works just fine and has been for a while. There is a custom RestOperation created for it inside of the CreateRestSchema() call that sets up the handler and ...
1
vote
1
answer
61
views
Error when exporting SOAP Server Object Extension from Eclipse plugin
I am new to creating SOEs. Limited experience with ArcObjects. We are upgrading from ArcGIS server 10.05 to 10.3 and I am responsible for wrapping all of our code (Java) in SOEs for the upgrade since ...
1
vote
0
answers
103
views
Issue on Uploading Two SOE to ArcGIS Server
I need to upload two REST SOE to ArcGIS Server. They are technically same and I just copied second one from the first and renamed the project and built it but when I tried to upload the second SOE ...
0
votes
2
answers
70
views
Stopping javascript apps overwriting auto calculated field values?
I have a feature service with an SOI. The SOI automatically calculates some field values for new features. The SOI itself works fine. However arcgis online maps are not aware of the autocalulated ...
0
votes
0
answers
200
views
How to call an SOE from ArcObjects?
I have a map service with an SOE. The SOE works fine and I can call it through http no problem. I would like to call it from an ArcObjects tool but My code errors when trying to cast the MapServer ...
1
vote
1
answer
797
views
Unable to add/edit a Server Object Extension
I have a C# project that creates a SOE for ArcGIS Server 10.2.2. I build it in Visual Studio Express 2010 and am rewarded with MyPitaExtension.soe. The contents of that file are what I expect (...
3
votes
0
answers
103
views
Rendering features based on relationships using ArcGIS for Server?
We are trying to determine an efficient way of rendering features depending on values in a different table. Background is this: We have a few thousand features in a MapService on an ArcGIS Server and ...
1
vote
0
answers
132
views
Why C# Server Object Extensions are faster [closed]
From my experience C# SOE are the fastest. It is also discussed here.
ArcGIS Server is developed in Java, how come .NET is the fastest?
0
votes
0
answers
185
views
Sr Lock on created gdb is not releasing
My problem is sr lock is not releasing on gdb , also please see that code can be improved?
Below is my code
public String exportGDB(String whereClause,IServerObjectHelper serverObjectHelper) // ...
3
votes
1
answer
789
views
Trouble compiling ArcObjects Server Object Extension project into .SOE file
I'm writing a Server Object Extension(SOE) in Visual Studio 2012 using C# in Windows 7. I'm using the REST Template that comes packaged with ArcObjects 10.2.
I'm able to build the program without ...
1
vote
0
answers
84
views
Using CheckCapabilities of Server Object Extension?
I am testing a sample project for SOE.
The constructor of this sample SOE is :
public NetSimpleRESTSOEWithCapabilities()
{
soeName = this.GetType().Name;
reqHandler =...