Can't update an SOE

1528
2
Jump to solution
10-17-2014 11:06 AM
BrentHoskisson
Occasional Contributor III

I have a server object extension that runs fine.

I just want to change the RestOperation from


districtQueryOper = new RestOperation("districtQuery",

new string[] { "strap", "layerName", "fieldList" }, new string[] { "json" }, DistQueryHandler);

To

districtQueryOper = new RestOperation("districtQuery",

new string[] { "strap", "layerName", "fieldList", "forcePoint" }, new string[] { "json" }, DistQueryHandler);

But no matter what I try the REST will not pick up the new argument.  Obviously there is something else it needs?  Does anyone one know what that is?

Thanks

Brent

0 Kudos
1 Solution

Accepted Solutions
VinceAngelo
Esri Esteemed Contributor

Minor updates that don't involve structural changes can be updated, but whenever I change the operation list, I make sure to remove and recreate the SOE.

View solution in original post

0 Kudos
2 Replies
VinceAngelo
Esri Esteemed Contributor

Minor updates that don't involve structural changes can be updated, but whenever I change the operation list, I make sure to remove and recreate the SOE.

0 Kudos
BrentHoskisson
Occasional Contributor III

And sometimes you have to actually shut down ArcGIS Server and start it up again.  That's what I ended up resorting to.

0 Kudos