POST
|
Hi @valenj88, IIS processes authentication methods in a specific order. When both Anonymous and Windows authentication are enabled at the same level, IIS will first attempt to use Anonymous Authentication. If this was working before, I can only think of some custom solution was in place. As a workaround, you can Enable Automatic Account Creation. Then, configure New Member Defaults to Viewer for both User/Role Type. You should have an indefinite number of viewer accounts for Enterprise. When a user accesses an application URL that is shared with Everyone, and they do not have an account, portal will create a Viewer account for that user.
... View more
a week ago
|
0
|
1
|
52
|
DOC
|
As an organization, you may need to run Python scripts on a scheduled basis, such as through Windows Task Scheduler. However, determining whether a Python script executed successfully or encountered an error can be challenging. Monitoring the results can become quite cumbersome, especially when scripts are running frequently. Even with log file generation, consistently checking for errors can be inconvenient. The attached Logger.py file is designed to create log files and send an email notification in the event of an error. For a demonstration of how this can be utilized, please refer to the video below.
... View more
2 weeks ago
|
5
|
0
|
307
|
POST
|
@DougBrowning I highly recommend heavily used services to be set to Dedicated. For the number of instances, there is no default answer. I would recommend starting at a min of 1 and a max of 4. Let the service receive requests for a some time (i.e. half day/full day) and take a look in ArcGIS Server Manager > Logs > Statistics. You can view the number of requests that particular service is receiving. Check the Average Response Time statistic for the service. I typically recommend keeping the response to 2 seconds or less. If you see excessive times, check the Service Maximum Running Instances for the service: If the Max Running Instances are maxed out (i.e. 4 instances) this is indicating clients are waiting for a instance to handle their requests, which means you should increase the max instances for this service.
... View more
3 weeks ago
|
1
|
1
|
457
|
POST
|
@Philip_Sarnecki you may get better performance using an Update Cursor rather than the field calculator. Ex: import arcpy
pointFC = r"C:\temp\test.gdb\points"
polygonFC = r"C:\temp\test.gdb\polygons"
# Perform Spatial Join
spatialJoinFC = arcpy.SpatialJoin_analysis(.....)
# Create lookup dictionary
nameDict = {}
with arcpy.da.SearchCursor(spatialJoinFC, ["uniqueId", "area_name"]) as cursor:
for row in cursor:
nameDict[row[0]] = row[1]
del cursor
# Update point feature class
with arcpy.da.UpdateCursor(pointFC, ["uniqueId", "name"]) as cursor:
for row in cursor:
row[1] = nameDict[row[0]]
cursor.updateRow(row)
del cursor
... View more
a month ago
|
2
|
1
|
552
|
POST
|
Hi @Jay_Gregory, I don't know the specifics of how the distributed collaboration works, but I know GlobalIDs are required to create copies of the data and keep them in-sync, so I agree with you that the recreation of this field is the culprit. Are there several feature classes/tables that are updated via SQL that participate in your collaboration? It may be worth exploring other options outside of a distributed collaboration to keep these datasets in-sync. Here is one solution I've implemented with several customers: https://community.esri.com/t5/arcgis-online-documents/overwrite-arcgis-online-feature-service-using/ta-p/904457
... View more
09-03-2025
01:06 PM
|
0
|
0
|
312
|
POST
|
If you can get the spreadsheet in a CSV format, you can use the Watch a Folder for New CSV Files input.
... View more
09-02-2025
05:33 PM
|
0
|
0
|
266
|
POST
|
You won't be able to update the point feature service, but you can output the buffers to a new polygon feature service using the Buffer Creator processor. Below is an example of how this is setup. It's getting the buffer distance from a field called distance: For the Coordinate System, make sure you specify a Projected Coordinate System.
... View more
09-02-2025
08:49 AM
|
0
|
0
|
287
|
POST
|
Hi @JeffSilberberg, I'm not sure I'm understanding your workflow. Are you trying to iterate through the feature service, and create a buffer using a distance value from a field in the feature service?
... View more
09-02-2025
07:55 AM
|
0
|
0
|
296
|
DOC
|
@rcGIS that was my mistake, there are changes to the Validation. You can easily add this with the following steps: 1. Right-click on the script > Properties > Validation 2. Update the following lines: elif 'Map Service' in str(item.typeKeywords) or 'Feature Service' in str(item.typeKeywords) or 'Image Service' in str(item.typeKeywords) and 'Hosted Service' not in str(item.typeKeywords): with: elif 'Map Service' in str(item.typeKeywords) or 'Feature Service' in str(item.typeKeywords) or 'Image Service' in str(item.typeKeywords) or 'Geoprocessing Service' in str(item.typeKeywords) and 'Hosted Service' not in str(item.typeKeywords): May be difficult to see above, but you're just adding the following: or 'Geoprocessing Service' in str(item.typeKeywords)
... View more
08-28-2025
03:47 AM
|
0
|
0
|
585
|
DOC
|
@rcGIS download the Item_Dependency.zip and use that with your existing script tool by right-clicking on the script tool > Properties > Execution tab: The differences between the Item_Dependency.zip and the Item Dependency - Python API 2.4. and Earlier.zip is only the Validation within the toolbox.
... View more
08-27-2025
05:58 AM
|
0
|
0
|
601
|
POST
|
Hi @LarissaDrysdale, 1. What version of ArcGIS Enterprise are you running? 2. Within Portal > Organization > Settings > Servers, is the Administration URL set to the Web Adaptor URL or the 6443 URL?
... View more
08-27-2025
04:13 AM
|
0
|
2
|
338
|
POST
|
I'll consider increasing The maximum time a client will wait to get a service to 2 minutes. I would recommend increasing your max instances for the service rather than the maximum time a client will wait. When clients are waiting long periods, it's usually due to there not be enough instances to handle all the requests. Personally, I know if I open a web map/application, I won't wait 2 minutes to see if the service is going to render. After about 10 seconds I would think the application is broken and close out.
... View more
08-27-2025
03:48 AM
|
0
|
0
|
367
|
Title | Kudos | Posted |
---|---|---|
5 | 2 weeks ago | |
1 | 3 weeks ago | |
2 | a month ago | |
1 | 08-22-2025 05:33 PM | |
1 | 08-25-2025 03:54 AM |
Online Status |
Offline
|
Date Last Visited |
yesterday
|