|
POST
|
When you say "it breaks", what error message do you see? Have you tried to use Fiddler to see where it possibly fails?
... View more
11-01-2010
11:01 AM
|
0
|
0
|
2774
|
|
POST
|
You can iterate through the layers' Graphics and mark every selected graphic (Selected = false). You can subscribe to PropertyChanged event on all FeatureLayers. The property you need to check for is either "SelectedGraphics" or "SelectionCount". When either of these two property changes, you can check whether this is the layer you want the graphic to be selected, if not then be sure to unselect the graphic.
... View more
11-01-2010
10:58 AM
|
0
|
0
|
2069
|
|
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
|
993
|
|
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
|
1933
|
|
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
|
1933
|
|
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
|
1078
|
|
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
|
1395
|
|
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
|
1933
|
|
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
|
796
|
|
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
|
2069
|
|
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
|
995
|
|
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
|
729
|
|
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
|
803
|
|
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
|
474
|
|
POST
|
Can you just use FeatureLayers and update their Where property?
... View more
10-29-2010
11:36 AM
|
0
|
0
|
803
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 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 |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|