Hi,
We're building an app with Arcgis Maps SDK .Net. I can edit geometry, like move a point no problem. But when I try to create a new point using AddFeatureAsync and ApplyEditAsync sometimes it works perfectly and all of a sudden, the ApplyEdit call returns no results. No mater what when the probleme occurs it keeps happening for a long time.. Then later on I try again and it works perfectly.
I tried to diagnose the problem using Fiddler to see what is sent to the Feature Service and when no results are returned, Nothing appears in Fiddler. It's like the SDK is not sending my request at all.
Here's the code. The FeatureTable is loaded..
await ((ServiceFeatureTable)entity.Feature.FeatureTable).AddFeatureAsync(entity.Feature);
IReadOnlyList<FeatureTableEditResult> results = await ApplyEditsAsync(true);
Here results.Count = 0...
Why? How can I diagnose that further. Please help.