|
POST
|
I have used the Python scripts at this page: Programmatically accessing analysis services—ArcGIS REST API: Spatial Analysis Service | ArcGIS for Developers In the second one (to find the services) it cannot find the spatial analysis service, then when I examined the services in the returned JSON, it was not there yet the spatial analysis service is shown in my premium content: u'premium: user: demographics', u'premium: user: elevation', u'premium: user: geocode', u'premium: user: geoenrichment', u'premium: user: networkanalysis', u'premium: user: spatialanalysis'], I have attached the complete services JSON. I know that there is the Service Area Service listed, but I was hoping to use the Create Drive-Time Areas service. Any help appreciated. Regards, Chris Mugdan
... View more
10-09-2016
10:12 PM
|
0
|
0
|
1066
|
|
POST
|
I upgraded from 10.2 to 10.2.1. My services are in the "C:\arcgisserver\config-store\services" directory (they are still there) but they are no longer shown in the ArcGIS Server Manager Site (root) and the message is that there are no services there. The printtools service has also disappeared even though it is here: "C:\arcgisserver\config-store\services\Utilities" Has something not been installed correctly? How do I fix this? When I upgraded from 10.1.1 to 10.2 everything worked fine. I tried re-starting the ArcGIS Server service but to no avail. Cheers, Chris Mugdan
... View more
01-22-2014
08:34 PM
|
0
|
1
|
385
|
|
POST
|
Another thing I tried was un-installing the ArcGIS Server, deleting the C:\arcgisserver directory then re-installing the ArcGIS Server, but it still fails to start the java processes. The server itself starts. There are no error reports and the logs are empty under C:\arcgisserver\logs
... View more
04-03-2013
04:53 PM
|
0
|
0
|
2599
|
|
POST
|
I checked the Windows event logs and there was nothing useful in there. It gives two information log entries that provide the following message: <quote> The description for Event ID 5 from source ArcGIS Server cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer. If the event originated on another computer, the display information had to be saved with the event. The following information was included with the event: ArcGIS Server The specified resource type cannot be found in the image file </quote> So I am none the wiser.
... View more
04-03-2013
02:28 PM
|
0
|
0
|
2599
|
|
POST
|
We recently moved premises and moved our network to a new IP address running 10.1. When I re-started the machine the service were not running, but I could get to the manager. When I re-started ArcGIS Server, I could no longer gain access to the manager or services. I uninstalled 10.1 and installed 10. SP1 from scratch. I did keep my \arcgisserver directory from when the machine had a different IP address (but the same name) though. When I start the ArcGIS Server, the two java processes do not start, but the ArcGIS Server process starts. I cannot find any logs that tell me what the problem is. Chris Mugdan
... View more
04-02-2013
11:15 PM
|
0
|
12
|
7651
|
|
POST
|
Thanks Ravi, I am currently building a set of queries and I shall try this. I'll let you know how I get on. Cheers, Chris
... View more
02-23-2012
07:27 PM
|
0
|
0
|
525
|
|
POST
|
I need to make queries on individual ArcGIS Server polygon layers to determine points in polygons and I do not want to submit individual queries for each point as I have a potentially large number of points to deal with. Is it possible to perform a query with multiple points that returns (say) a list of polygon ids that the points are in, in the order that the points were submitted or somehting like that. I know I am very hopeful here, but it would be great if such a query were possible. Regards, Chris Mugdan
... View more
02-22-2012
07:44 PM
|
0
|
2
|
995
|
|
POST
|
I am endeavouring to render dynamic layer polygons with labels using ExportWebMap. I have the following questions and issues: How do I put labels on just the regions I want to apply themes to other than using a "where" clause in the labelingInfo? It seems quite cumbersome to have to create a huge "where" clause when I have lots of regions to apply themes to, and it may not fly if the server has limits on the size of the "where" clause. Does it have a limit? I am using a POST request. I tried to switch off the regions I was not applying themes to by setting the default outline to transparent but this seemed to switch off all the labels (including the visible polygons) too. It did what I wanted in removing all the unwanted regions though. I can verify this behaviour just by setting the opacity to 255 in the default outline colour. Is this a bug or expected behaviour? I can provide the JSON for this if needed, but it is rather large. Regards, Chris Mugdan
... View more
02-22-2012
07:38 PM
|
0
|
0
|
572
|
|
POST
|
For everyone's interest, I solved this semi-automatically;) by adding the wkid of our map to the map attributes and then invoking the ArcGIS Server geometry service to project the extent corner points to the map's spatial reference. This seems to work satisfactorily. Thanks to those who took the trouble to respond! Cheers, Chris Mugdan
... View more
05-10-2011
05:59 PM
|
0
|
0
|
728
|
|
POST
|
Yes, that's it. We have our own widgets that invoke functions on our product that adds its layers over the top of the underlying ArcGIS Server base layers. The viewer combines the output of our product (as an overlay) with the customer's map layers in this way, and those layers may not be in Web Mercator projection. I have added a couple of classes in the main code base to talk to our WMS server and I have slightly modified the MapManager to handle our type of optional layer. Maybe we are asking too much of the product in what we are trying to do? Cheers, Chris
... View more
05-05-2011
08:01 PM
|
0
|
0
|
728
|
|
POST
|
Hi Robert, Thanks for the detailed response. My problem is that, if someone who uses our modified Flex Viewer is using maps with a different coordinate system that we do not know about in advance then from what you are saying, inside the Flex Viewer we cannot automatically transform the extent coordinates that we compute in our application (which are WEGS84) and pass in via substitution to the map's coordinate system. If I could interrogate the map's coordinate system then I presume I could use the geometry operations to transform the points, but I cannot see how to get at the map's coordinate system. It seems to be null (uin the Flash debugger), even after the base layers are added. I guess it is too late then anyway. If none of the above is possible then I suppose I am restricted to the Web projection by modifying the setting of iextent in the MapManager as follows: var wmextent:WebMercatorExtent = new WebMercatorExtent(Number(iextArray[0]), Number(iextArray[1]), Number(iextArray[2]), Number(iextArray[3])); iextent = wmextent.extent; This is what I have been doing as a workaround initially, but what I need is a more robust solution. Cheers, Chris
... View more
05-05-2011
04:51 PM
|
0
|
0
|
728
|
|
POST
|
Hi Robert, The initial extent coordinates that we put into the config.xml are determined in our product in WGS84 and they do not know what coordinate system the underlying ArcGIS Server layers are. I was hoping at least to be able to find out what coordinate system the base layers were in so I could transform the extent coordinates to the base layer (map) coordinates from our WGS84 coordinates. I take it that setting the extent coordinate system to WGS84 with the coordinates from our application and then passing that to the map will not work? I tried that and it did not seem to work, but maybe I did not do it correctly. Here is what I did: ... iextent = new Extent(Number(iextArray[0]), Number(iextArray[1]), Number(iextArray[2]), Number(iextArray[3])); ... iextent.spatialReference = new SpatialReference(4326); ... map.extent = iextent; Cheers, Chris
... View more
05-05-2011
03:25 PM
|
0
|
0
|
728
|
|
POST
|
We have an application where we use template substitution to publish our version of the ArcGIS Flex Viewer based on extents in WGS84. We put them into config.xml "initial extent" setting before launching the Flex Viewer instance. How can I ensure that this extent is transformed into the map's spatial reference so that the map goes to the correct extent? Is this the right place for setting the extent? I am using ArcGIS Flex Viewer 2.3.1 Cheers, Chris Mugdan
... View more
05-04-2011
11:13 PM
|
0
|
7
|
3104
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-25-2019 05:31 PM | |
| 1 | 09-16-2019 10:58 PM | |
| 1 | 01-10-2019 05:16 PM | |
| 1 | 02-28-2018 04:36 PM | |
| 2 | 02-26-2018 07:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-20-2023
08:49 AM
|