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