I'm trying to create a new point feature in a Runtime geodatabase but when my code gets to this line:
var recNo = await featureTable.AddAsync(newFeature);
I get the error in the title of this discussion:
Ownership-based access control does not permit this operation on this feature. : The service does not have "create" capability.
Anyone else seen this and know how to resolve it? I'm running VS2013, Runtime 10.2.5.
Thanks!
Solved! Go to Solution.
It sounds like the user doesn't have permission to create new features to that service or service doesn't allow updates/creates.
If these doesn't help, could you provide small reproducer?
Cheers,
Antti
How did you create the Runtime Geodatabase?
If it was created by the export function in ArcMap, it's read-only.
You have to create the Geodatabase using the Tasks.Offline namespace in combination with ArcGIS Online / ArcGIS for Server.
It sounds like the user doesn't have permission to create new features to that service or service doesn't allow updates/creates.
If these doesn't help, could you provide small reproducer?
Cheers,
Antti
I just found out that this data came from a Map Service, not a feature service which is the cause of the error.