|
POST
|
Hi @GregMattisGov, Take a look at the scripts in the below link. I've used this solution for several customers to migrate built-in accounts to enterprise (active directory or SAML) accounts. It should work the same going from SAML to SAML, and it will migrate the add-on licenses (i.e. Pro) as well. https://community.esri.com/t5/arcgis-enterprise-documents/migrate-built-in-named-user-accounts-to-enterprise/ta-p/1269974
... View more
05-22-2024
05:10 AM
|
0
|
0
|
2313
|
|
POST
|
@JustinNettleton1 do you have ArcGIS Pro? You may be able to simplify this with a truncate/append. https://community.esri.com/t5/arcgis-online-documents/overwrite-arcgis-online-feature-service-using/ta-p/904457
... View more
05-22-2024
04:09 AM
|
0
|
0
|
3536
|
|
POST
|
Hi @RehanChaudhary, I haven't used this processor, yet, but you could see if this calculates the speed correctly: https://github.com/Esri/motion-calculator-for-geoevent
... View more
05-20-2024
10:29 AM
|
0
|
0
|
1184
|
|
DOC
|
@anonymous55 go to Organization > Members > Add Members: There you will have an option to create a Built-in account:
... View more
05-20-2024
07:27 AM
|
0
|
0
|
40809
|
|
DOC
|
@Levon_H try adding the following line after the Geodatabase is deleted, but before it attempts to remove the zipped geodatabase: arcpy.management.ClearWorkspaceCache(arcpy.env.scratchFolder) Ex: # Delete temporary File Geodatabase and zip file
print("Deleting temporary FGD and zip file")
arcpy.Delete_management(gdb)
arcpy.management.ClearWorkspaceCache(arcpy.env.scratchFolder)
os.remove(gdb + ".zip")
... View more
05-16-2024
09:01 AM
|
0
|
0
|
16515
|
|
DOC
|
@Levon_H do you get the same error when trying to delete the zip file manually?
... View more
05-16-2024
08:02 AM
|
0
|
0
|
16531
|
|
DOC
|
@Levon_H @Chase_RSO do you get an error if you manually delete the zip file? Instead of deleting, are you able to move the zip file? Ex: shutil.move(os.path.join(arcpy.env.scratchFolder, "TempGDB.gdb.zip"), os.path.join(r"C:\temp\TempGDB.gdb.zip")) I'm wondering if you try moving the file to another directory first, you can then delete it using the os.remove command.
... View more
05-15-2024
04:59 PM
|
0
|
0
|
16595
|
|
DOC
|
@RickeyFight , You will need to apply the token to your params when querying the service: params = {'f': 'pjson', 'where': "1=1", 'outFields' : '*', 'statisticType' : 'count', 'returnGeometry' : 'false', 'token' : token}
... View more
05-15-2024
11:58 AM
|
0
|
0
|
11947
|
|
DOC
|
@RickeyFight looks like your portal URL is incorrect for generating the token. Replace your # Generate Token portion of the script with the following: # Generate Portal token
tokenURL = 'https://gis.ashland.or.us/portal/sharing/rest/generateToken/'
params = {'f': 'pjson', 'username': username, 'password': password, 'referer': 'https://gis.ashland.or.us'}
r = requests.post(tokenURL, data = params, verify=False)
response = json.loads(r.content)
token = response['token']
print(token)
... View more
05-15-2024
11:12 AM
|
0
|
0
|
11974
|
|
DOC
|
@RickeyFight if the token is not printing, it's erroring within that portion. Do you know if you have Windows Authentication enabled for your Portal? For example, if you go to Portal, does it sign you in automatically?
... View more
05-15-2024
09:59 AM
|
0
|
0
|
11999
|
|
POST
|
Hi @McKinneyPatrickPAContractor, arcgis are 'built-in' accounts. Meaning, these accounts are stored within ArcGIS Online. enterprise are organization-specific identity store accounts. For example, you can configure SAML logins with ArcGIS Online
... View more
05-15-2024
08:48 AM
|
0
|
0
|
774
|
|
POST
|
Hi @JasminePrater, I believe the Enterprise Reporter tool will do this.
... View more
05-15-2024
08:42 AM
|
0
|
1
|
1766
|
|
DOC
|
@RickeyFight check to make sure your token is being generated, (i.e. Add a statement: print(token) ).
... View more
05-15-2024
08:34 AM
|
0
|
0
|
12028
|
|
DOC
|
@RickeyFight add a print statement before line 68: print(response) What does this return?
... View more
05-15-2024
08:23 AM
|
0
|
0
|
12038
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|