|
POST
|
Can you try using EditorWidget instead of GP tool to add the shape? You can create rings by performing Cut. Try to see if the order of rings is still unpredictable. If no, then maybe the GP tool is causing this? You can also try performing the query from your web browser through the REST end point. Is this off a map service or feature service? I don't know how I could help. I asked the REST API team and they also do not manipulate the order, they simply return geometry as it is returned by service. What version of ArcGIS Server do you have? I'm thinking ArcGIS Server team might be able to assist you but you also might want to contact support and give them a reproducible sample? Thanks a ton. First I would like to say that am working ESRI product for last 10 years and strong in arcobjects. Shape has been saved into database using GP tool which correctly maintain ring order [using geometry bag to add the ring in order]which is sent from client. No issues, no second thought. Simple test case : Just make a query using query task on a SDE where polygon contains multiple rings and check the order of rings returned. We use ArcGIS 10 SP1 and ESRI SL API 2.1 I have already raised an incident and looking for quick response.
... View more
05-24-2012
10:14 AM
|
0
|
0
|
636
|
|
POST
|
Can you check in Fiddler, the request for geometry returns the rings in the same order as you want them drawn? If the query result is already reversed then ArcGIS API for Silverlight have respected the order geometry was received. jennifer, Query Task returns rings in different order .i.e. In SDE, polygon has 2 inner rings with 5 and 4 vertices. Query task returns polygon with 2 inner rings where 1st inner ring has 4 vertices and second has 5 vertices. One important thing is some times it returns in same order also. This is unpredictable. Please help me quickly. This is one of the important request from client. Thank you.
... View more
05-24-2012
09:12 AM
|
0
|
0
|
636
|
|
POST
|
Repost and brought forward... any one help me with this query?
... View more
05-24-2012
04:42 AM
|
0
|
0
|
636
|
|
POST
|
Hi All, I am saving a polygon with 2 exclusions [Inner rings] (i.e. say exlcusion 'A' as 4 vertices and exclusion 'B') into SDE database. When I do a Sliverlight ESRI query task to retrive the same shape, am getting exclusion B as first inner ring and exclusion A as second inner ring. How do I get a polygon rings in same order as I saved into database. Please help. Note: shapes from sliverlight has been saved to SDE using GP Tools where inner rings are added into geometry bag in same order and stored in geodatabae SR
... View more
05-23-2012
03:46 AM
|
0
|
6
|
1081
|
|
POST
|
Thanks Muzzamil. Do you know any specific reason for taking more time to open the map reader?.
... View more
04-24-2012
04:12 AM
|
0
|
0
|
543
|
|
POST
|
All, We are facing performance issues in our application. When I investigate the log file I found below log and I would like to know what is elapsed time?. It is taking nearly 21.07 seconds to open?. Can some one explain the parameter "MapServer.MapReader.Open" and what exactly elapsed time meant in the log file? <Msg time='2012-04-24T05:10:46' type='INFO3' code='10093' target='BostonCity.MapServer' methodName='MapServer.MapReader.Open' machine='SERVER01WGH' process='2324' thread='6364' elapsed='21.07157'>MapReader.Open has completed.</Msg> Thank you
... View more
04-24-2012
02:42 AM
|
0
|
3
|
962
|
|
POST
|
hello I am doing a query task using SLIVERLIGHT API 2.1, it fails and returns "Unable to complete Operation." as a message in failed event. No stack trace available. I am working on spatial intersection with a polygon layer on a input geometry. But input geometry is bit complex, i.e it has one small inner ring. Please see attached image a) What is best method to clean this shape? and make it is a validate shape. b) why query task returns generic message unable to complete operation, why detailed error message is not given Kindly help me on this
... View more
04-24-2012
12:51 AM
|
0
|
2
|
819
|
|
POST
|
Hi All, I am really impressed with Sliver light Viewer 1.0 setup file wizard. I have a sliverlight application, looking for steps to create a setup which looks for prerequisites and other options. We are also using third party API and application uses crystal reports as well. I am looking for some document for sliver light set up creation. I have searched in Googled, but not much help Please do needful. Any pointers will be helpful SR
... View more
03-15-2012
03:28 AM
|
0
|
1
|
737
|
|
POST
|
Hello, We are using ESRI Sliverlight API version 2.1 in our application. Currently we are using layers in WGS84 coordinate system in MXD and application works fine. When we change the layers coordinate system to Web Mercator (AS) in map document, our application fails to display the map. 1) Is version 2.1 supports WM (AS). If yes, what are all the changes needs to be done? 2. if not, what is latest version to support this projection Error displayed Failed to create a 'ESRI.ArcGIS.Client.Geometry.SpatialReference' from the text '102100'. [Line: 450 Position: 126] Please help us quickly SR
... View more
03-12-2012
05:10 AM
|
0
|
1
|
461
|
|
POST
|
Hi Jackson, We are facing the same issue but in sliverlight API. Have you got any solution. Please update if any Thanks SR I have installed ArcGIS Server 10 and have successfully published my web service in Web Mercator Aux Sphere (wkid 3857), and I can view this service in the REST directory. However, when I try to pull the service into my FlexView, it will not show up over the Esri basemap. Does anyone know how I can fix this without? NA Jackson GIS Admin
... View more
03-12-2012
04:53 AM
|
0
|
0
|
14160
|
|
POST
|
Please let me know when SL 3.0 will release officially which supports microsoft sliverlight 5
... View more
02-08-2012
08:43 PM
|
0
|
0
|
703
|
|
POST
|
Hello Experts, I am doing query task to find the records in polygon layer, which are spatially intersecting with input geometry . Query task always goes to failed event with Error code 400 and message "Unable to complete operation." wither inner details "Unable to complete Query operation." Input geometry is polygon shape (81 vertices) with 12 inner rings . If I pass simple polygon query task works fine. How to solve this issue?. Please help me Sliverlight version: 2.1.0.446 Pseudo code QueryTask areaInfo = new QueryTask(url); areaInfo.ExecuteCompleted += new EventHandler<QueryEventArgs>(areaInfo_ExecuteCompleted); areaInfo.Failed += new EventHandler<TaskFailedEventArgs>(areaInfo_Failed); ESRI.ArcGIS.Client.Tasks.Query query = new Query(); query.Geometry = geometry; //Set the fields to return from the query. query.SpatialRelationship = SpatialRelationship.esriSpatialRelIntersects; query.OutFields.Add("*"); query.ReturnGeometry = true; //Call the ExecuteAsync method to run the query. areaInfo.ExecuteAsync(query); } SR
... View more
12-16-2011
03:28 AM
|
0
|
1
|
1857
|
|
POST
|
Thank you both. I will increase timeout parameters and test the same.
... View more
12-16-2011
03:21 AM
|
0
|
0
|
563
|
|
POST
|
Hi, We are calling custom asynchronous geoprocessing service from our sliverlight application which will do bulk spatial operations on server side. For some of heavy processing, it takes more than 10 minutes, by this geoprocessing service fails and throws "The remote server returned an error: NotFound". 1 ) What could be exact reason? 2) How to increase time out in case of asynchronous job from client application Please help me on this. Really frustration on this message. SR
... View more
12-13-2011
03:42 AM
|
0
|
3
|
888
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-13-2020 11:23 AM | |
| 1 | 02-25-2019 01:00 PM | |
| 1 | 04-29-2021 08:33 AM | |
| 1 | 04-12-2018 02:50 PM | |
| 1 | 05-19-2014 11:23 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-25-2022
11:27 AM
|