|
POST
|
I cannot think of any issue with drawing a Polygon or Polyline besides that maybe the geometry need to be simplified first. You may also use the Editor's Add to see if it will give you a different result from using Draw. Or if you want to continue to use Draw, try to call SimplifyAsync on the geometry before calling BufferAsync.
... View more
11-01-2010
10:48 AM
|
0
|
0
|
970
|
|
POST
|
http://s5-bsc-ims2.nrn.nrcan.gc.ca/ArcGIS/rest/services/TestSendEmail/GPServer/SendEmail/submitJob?EmailTo=huppe%40nrcan.gc.ca& DesiredLayers=Big+Lakes%7cBoundary%7cInternational+Borders%7cProvinces%7cSendEmail&f=json&HTTP/1.1 Is this the correct input name?
... View more
11-01-2010
10:36 AM
|
0
|
0
|
1855
|
|
POST
|
You used the same parameters found in Fiddler under Inspectors > WebForms tab? The error 500 that you see is a ServiceException from JSON. Unfortunately there are no further details, usually details will say invalid input. But you said the parameters from SL app when used in the browser will submit the job without error. I'm not sure what to tell you. I'll check whether URL encode has something to do with it.
... View more
11-01-2010
10:25 AM
|
0
|
0
|
1855
|
|
POST
|
You can apply ScaleTransform to the symbol template. Please look at the samples here: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#CustomSymbols
... View more
11-01-2010
09:55 AM
|
0
|
0
|
1045
|
|
POST
|
Hi. I'm sorry I have not worked on ArcIMS myself but when I searched for "ArcIMS" in our forums, I came across this thread: http://forums.arcgis.com/threads/10588-Silverlight-control-and-Google-maps While it does not seem much related, you can go to Rex Hansen's blog where he posted about ArcIMS.
... View more
11-01-2010
09:34 AM
|
0
|
0
|
1354
|
|
POST
|
Have you tried running Fiddler while you run your SL app to see where it hangs? Also, have you tried debugging the SL app to see if the parameters it passes to your task are correct? Can you also try to use the same parameters in the browser? You can look at this post for reference post# 14 http://forums.arcgis.com/threads/14730-Area-And-Perimeter
... View more
11-01-2010
09:24 AM
|
0
|
0
|
1855
|
|
POST
|
Have you tried using Editor's Select command? You can set SelectionMode to Polyline. You can refer to this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#FeatureLayerSelection
... View more
11-01-2010
09:14 AM
|
0
|
0
|
759
|
|
POST
|
Another way is to have all the FeatureLayer subscribe to MouseLeftButtonDown event and update your FeatureDataForm's FeatureLayer and GraphicSource in the eventhandler:
private void FeatureLayer_MouseLeftButtonDown(object sender, ESRI.ArcGIS.Client.GraphicMouseButtonEventArgs e)
{
this.MyFeatureDataForm.FeatureLayer = sender as FeatureLayer;
this.MyFeatureDataForm.GraphicSource = e.Graphic;
}
If you are going to use Ali's suggestion, your ComboBox ItemSource need to bind to a list of FeatureLayer and your FeatureDataForm's FeatureLayer need to bind to the SelectedItem of your ComboBox. How you choose the Graphic, is up to your application's logic.
... View more
11-01-2010
09:05 AM
|
0
|
0
|
1996
|
|
POST
|
Are you able to query the REST endpoint through the browser and get more than 500 records? The service itself may have reached its limit of how many features it can return at once (the default is 500 for ArcGIS Server 9.3.1, 1000 for ArcGIS Server 10, 1000 for MapIt)... as mentioned here: http://help.arcgis.com/en/webapi/silverlight/help/creating_featurelayer.htm
... View more
10-29-2010
12:33 PM
|
0
|
0
|
926
|
|
POST
|
This might be a related thread: http://forums.arcgis.com/threads/7093-scalebar-issues
... View more
10-29-2010
12:29 PM
|
0
|
0
|
699
|
|
POST
|
Ah okay. This is related thread then: http://forums.arcgis.com/threads/8309-How-to-perform-spatial-query-between-two-services...
... View more
10-29-2010
11:47 AM
|
0
|
0
|
758
|
|
POST
|
There are Geoprocessing samples in our SDK: http://esriurl.com/slsdk2 But your question is more about creating and publishing that service. Maybe this link will help? http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/index.html#//009300000029000000.htm
... View more
10-29-2010
11:45 AM
|
0
|
0
|
462
|
|
POST
|
Can you just use FeatureLayers and update their Where property?
... View more
10-29-2010
11:36 AM
|
0
|
0
|
758
|
|
POST
|
Kindly see the attached sample. Maybe you can compare what you have done different and then maybe see why this sample works.
... View more
10-29-2010
10:18 AM
|
0
|
0
|
1205
|
|
POST
|
I failed to mention about Intersects method http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Geometry.Envelope~Intersects.html To figure out if the graphic's geometry belongs in the map's extent you can use this check:
if (graphic.Geometry.Extent.Intersects(Map.Extent))
Intersects also check for the SpatialReference.
... View more
10-29-2010
10:07 AM
|
0
|
0
|
518
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-11-2025 01:30 PM | |
| 1 | 06-06-2025 10:14 AM | |
| 1 | 03-17-2025 09:47 AM | |
| 1 | 07-24-2024 07:32 AM | |
| 1 | 04-05-2024 06:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-12-2026
09:38 AM
|