|
POST
|
You can probably take advantage of dynamic layers to pass in your own layer definition.
... View more
10-27-2016
02:39 PM
|
0
|
0
|
972
|
|
POST
|
If you print fcBoxZones after running arcpy.ListFeatureClasses, does the list appear correct?
... View more
10-25-2016
05:55 PM
|
0
|
0
|
1538
|
|
POST
|
ArcRest would be good to look into, but generally, if you're familiar with http requests and can monitor them using Fiddler or the Dev Tools, and you're familiar with how to submit requests using Python, you should be able to recreate the requests creating a service manually makes in Python. There's a sample script on creating hosted tiled layers, perhaps it can easily be modified.
... View more
10-25-2016
11:13 AM
|
1
|
0
|
1103
|
|
POST
|
How much physical RAM do you have on the machine? Tomcat can allocate up to 25% of the physical RAM on the machine to itself, and free it up as the OS needs it. There was also a bug at 10.2.2 where the Tomcat process would use a lot of CPU if the memory ran up against that 25% threshold. That issue has been resolved in a patch: ArcGIS for Server Security 2016 Update 2 Patch BUG-000082423 - Under consistent load, the javaw.exe process at ArcGIS 10.2.2 for Server consumes 25% of the server's RAM, and any further request forces the process to use 100% of the machine's CPU. It doesn't seem like you're seeing CPU issues, but it may be a patch you'll want to have installed if you don't already.
... View more
10-24-2016
09:17 AM
|
0
|
1
|
838
|
|
POST
|
If you run Fiddler or the browsers developer tools, can you see which request is failing and what's the response for that request?
... View more
10-24-2016
09:08 AM
|
0
|
0
|
965
|
|
POST
|
The order specifically for those two products doesn't really matter, you can upgrade either one first. If you have a hosting server, then the order matters, which is outlined here.
... View more
10-24-2016
08:46 AM
|
0
|
0
|
1264
|
|
POST
|
I assume you don't want to stop the GP service to clear the lock? Are you able to delete the lock manually? If not, then I doubt a script would be able to either. I see your other posts, seems like you're just finding that information to know which services to stop. In Googling, though, I came across this answer: List all processes and their Command-line parameters WMIC PROCESS where 'caption="ArcSOC.exe"' get Caption,Commandline,Processid > C:\arcsocprocesses.txt returns all of them and WMIC PROCESS where 'ProcessID=39280' get Caption,Commandline,Processid > C:\pid39280.txt returns the process with ID 39280. I use subprocess for most Windows commands in Python, and by adding this in and parsing the results, you can pick out the service name: import subprocess
result = subprocess.check_output("WMIC PROCESS where 'ProcessID=381960' get Caption,Commandline,Processid")
for line in result.split("\n"):
if "-Dservice=" in line:
serviceName = line.split("-Dservice=")[1].split(" \"")[0]
print(serviceName)
... View more
10-21-2016
09:15 AM
|
1
|
6
|
18473
|
|
POST
|
You're making export map requests, instead of using the feature layer, right? I know you mentioned that you simplified the polygon, but does it still have a lot of vertices? Here's a blog post on determining how many vertices a feature has. Where is the data stored? FGDB, or a geodatabase? Is the data local to the Server? If you were to turn on Verbose logging and make an export map request, can you take a look at the logs and determine which operation within the export map request takes the most time? You'll need to turn on the Elapsed Time column.
... View more
10-20-2016
08:22 AM
|
0
|
1
|
2236
|
|
POST
|
Does the overlay get queried as well when you query the raster? If so, you can turn on Verbose logging within ArcGIS Server and take a look at the Data Access message, and see how long it took to get the data for the query.
... View more
10-19-2016
11:43 AM
|
0
|
1
|
2236
|
|
POST
|
If you try to install it via command line, or look at the Event Viewer, can you see the full error message? Did you let the web adaptor install IIS for you?
... View more
10-19-2016
11:09 AM
|
0
|
0
|
951
|
|
POST
|
So it looks like the feature type and how it's rendered are related to the problem. Most polygon feature layers don't honor the symbology, but some do. If it's not your service, there's not much you can do on the service end. What client are you using? You can update the symbology for the layer in the client application. The following example is a web map:
... View more
10-19-2016
11:07 AM
|
0
|
1
|
2167
|
|
POST
|
Thanks for the testing. I'm not familiar with .NET so I just wanted to see if it was possibly a performance issue between the ArcGIS Server and the database and not something within your code itself. However, given that the map performs well and editing the feature service through REST is fine as well, it does seem something specific to .NET. Another thing you can look at outside of your code is to set the logs to DEBUG and see if anything stands out within the logs when you make an edit through .NET. Sorry I couldn't be of more help, but perhaps someone more familiar with what you're doing can chime in.
... View more
10-19-2016
08:15 AM
|
0
|
0
|
1002
|
|
POST
|
If you edit the feature service through the REST endpoint, do you still see the slowness? Where is the database in relation to the ArcGIS Server? Does the map service perform slowly when just panning and zooming?
... View more
10-18-2016
03:55 PM
|
0
|
2
|
1002
|
|
POST
|
Is it possible to use annotation instead of dynamic labels? That creates considerable more work to create the maps, but it ensures that the labels won't be duplicated. You can also see if you can increase the maximum image height and width for the map service. Maybe this will help to decrease the number of requests that have to be made to create the printed map.
... View more
10-18-2016
03:53 PM
|
0
|
0
|
1101
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-28-2026 06:05 AM | |
| 1 | 08-26-2016 10:10 AM | |
| 2 | 02-22-2024 07:22 AM | |
| 1 | 06-07-2024 07:11 AM | |
| 4 | 12-12-2024 08:52 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
07:43 AM
|