Select to view content in your preferred language

Cut using Geometry Service

740
1
09-02-2012 11:21 PM
SantoshV
Emerging Contributor
HI,
I have downloaded a sample from http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#Cut interactive sample and it worked fine, but when I replaced the layers with my code it does not work effectively , it throws me an error ""The remote server returned an error: NotFound.""..

I don't understand what this error means

Please guide I have attached my code...
0 Kudos
1 Reply
DominiqueBroux
Esri Frequent Contributor
It seems to be a performance issue because your input geometries are very heavy.

By generalizing them, you will get better results:

query.ReturnGeometry = true;
query.MaxAllowableOffset = 1000;
queryTask.ExecuteCompleted += queryTask_ExecuteCompleted;
0 Kudos