|
POST
|
Made a WCF call to the ASP side and did all necessary actions there.
... View more
10-01-2013
01:22 PM
|
0
|
0
|
520
|
|
POST
|
Hi Morten, Has this changed in VS 2012 and Arc 10.2 or do I still need to create a custom web service? Thanks,
... View more
09-09-2013
10:09 AM
|
0
|
0
|
597
|
|
POST
|
I recently upgraded my ESRI to 10.2 from 10.1 and am now unable to edit my data in SDE. My data resides in 9.3.1 SDE and every time I try to edit a feature in 10.2, I get "The requested operation is invalid on a closed state. STATE_ID=358107" This was not an issue in 10.1 and my other computer running 10.1 can edit the same data that I am unable to. Has anyone come across this problem? Thanks,
... View more
09-04-2013
11:59 AM
|
0
|
5
|
3684
|
|
POST
|
That's the conclusion I also came to. I was hoping there is another way around it but I guess not. Thanks for your help Melita. EDIT: For those curious, here's what worked for me: GeometryService geometryService = new GeometryService("...esri/GeometryServer"); geometryService.ProjectCompleted += geometryService_ProjectCompleted; GraphicsLayer graphicsLayer = MainMap.Layers["MyGraphicsLayer"] as GraphicsLayer; geometryService.ProjectAsync(graphicsLayer.Graphics.ToList(), new SpatialReference(102100)); In the geometryService_ProjectCompleted(...) function you can pull out the Geometry of the object(s) and that object(s) will contain coordinates in 102100, which is the base map.
... View more
08-06-2013
01:40 PM
|
0
|
0
|
6553
|
|
POST
|
I'm afraid I don't understand your statement about graphics layer items visible in Western Europe. They're not placed correctly? Or...? Melita For my map, I am using an ESRI basemap (WGS 1984) onto which I layer a NAD 83 layer (ie: roads) via a feature service. On top of these 2 data layers, I have a graphics layer. When I draw something (ie: highlight a road) on the graphics layer via C#, the (x1,y1) and (x2,y2) are correctly provided wrt to the location of road in my NAD 83 system but are actually drawn in Europe as the graphics layer is working in the spatial reference of the basemap (WGS 1984). So the items are drawn correctly but instead of using NAD 83 for measurements, they use the basemap's projection.
... View more
08-06-2013
11:45 AM
|
0
|
0
|
6553
|
|
POST
|
So that means there is no way to reproject a base map into 3TM and view all of North America (coast to coast)? If the answer is no, is there a way I can work around this problem? My current issue is that if I draw something on the graphics layer in North America, it's actually visible in Western Europe. Thanks,
... View more
08-06-2013
09:39 AM
|
0
|
0
|
6553
|
|
POST
|
Simple answer: The Basic license does not allow for working with Map Services.
... View more
08-06-2013
09:02 AM
|
0
|
0
|
616
|
|
POST
|
Thank you for your quick response Tim. I have done as you have indicated and have received the following result (green: reprojected; beige: original) [ATTACH=CONFIG]26506[/ATTACH] The result seems to be similar to the approach I was using previous where I changed the data frame coordinate system. Am I missing something? Thanks,
... View more
08-06-2013
08:51 AM
|
0
|
0
|
6553
|
|
POST
|
I've downloaded an ESRI base map layer package from the website and it comes projected as WGS 1984. I am attempting to reproject the map into another coordinate system (NAD 1983). When I change the coordinate system in the Data Frame properties in ArcMap, the map becomes an egg and I lose the east coast of Canada and the US. I am trying to reproject the map so I can cache it and provide it as a map service to match my other data. Does anyone have an idea as to why this happens and how to fix it? Thanks,
... View more
08-06-2013
07:44 AM
|
0
|
9
|
11148
|
|
POST
|
That's exactly what it says and therefore all the pieces have fallen into place. Thanks for your help Steve, I appreciate it.
... View more
08-06-2013
07:13 AM
|
0
|
0
|
2165
|
|
POST
|
I think we are getting somewhere with this. I was trying to create a GDB from inside Catalog and was told I don't have the proper license which indicates I do indeed only have the Basic license. If this is the case, that's why it also doesn't allow me to use Map Service. Does this logic make sense? The Map Server URL is not visible per se in Manager but is instead opened if I click on the map service preview to the left of the the title, how many instances are running, being used, etc. Also, would you happen to know if I can use ArcObjects in Silverlight with Arc 10.1 and VS 2012? Thanks,
... View more
08-02-2013
12:57 PM
|
0
|
0
|
2165
|
|
POST
|
Thank you for your response Steve. I apologize, I totally forgot to type in the arcgis part. My URL does indeed say: http://<server_name>:6080/arcgis/rest/services/<service_name>/MapServer If I navigate to http://<server_name>:6080/rest/services/ I see the following: .... Services: * <service_name> (FeatureService) ... What I am confused about is that it says FeatureService and should it not be a MapService? Or am I totally missing something here? Also, if I click on the <service_name> (above) it takes me to http://<server_name>:6080/arcgis/rest/services/<service_name>/FeatureServer and I can see all my layers, descriptions, etc. The error that I am getting makes sense as the service that I published appears under /FeatureService and not /MapService. This is however not the behavior I am intending. I am looking to publish the whole map (mxd) as 1 map service. Thanks for your help.
... View more
08-02-2013
10:23 AM
|
0
|
0
|
2165
|
|
POST
|
The URL it's heading to is: http://<server_name>:6080/rest/services/<service_name>/MapServer This is baffling because in 9.3.1 after I published my service I could use it immediately with no issues. The whole service with all the layers would come on and voila. All I have been able to get so far in 10.1 are FeatureLayers where I need to specify a specific layer index to view the contents. Also, would you happen to know if I can use ArcObjects in Silverlight with Arc 10.1 and VS 2012? Thanks,
... View more
08-02-2013
07:10 AM
|
0
|
0
|
2165
|
|
POST
|
In my silverlight application, can I use ITopologicalOperator in Visual Studio 2012 while running Arc 10.1? From my understanding, as ITopologicalOperator is part of ArcObjects and ArcObjects apparently(?) isn't supported for VS 2012 in 10.1 I'd say no. Does anyone know any better? Thanks,
... View more
08-01-2013
11:15 AM
|
0
|
1
|
3305
|
|
POST
|
I have published a map service to my localhost via ArcMap. However when I try to access the map service from Manager via its REST URL I get an: Error: Code: 500 Having checked the logs, it says "Unable to process request: null" and the returned code is 9003. I have verified that the service is accessible to all and that it is running. Does anyone have any suggestions? Thanks,
... View more
07-31-2013
01:45 PM
|
0
|
8
|
4211
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-23-2014 08:49 AM | |
| 1 | 09-25-2014 04:11 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:24 AM
|