|
DOC
|
@ebpip I made some updates to the Copy Views and it should work now. I noticed that there are issues with it if you the feature service has been copied to the Target environment using the Copy Hosted Services tool. The view will be created, but it will be blank. Not quite sure what is causing this. I'm currently testing with the latest ArcGIS for Python API 2.4.2. So, you may need to publish the hosted feature service to the target environment using ArcGIS Pro.
... View more
03-13-2026
04:16 AM
|
0
|
0
|
1926
|
|
DOC
|
@ebpip can you share the feature service and view to a group and invite my AGOl account (jskinner_rats)?
... View more
03-09-2026
08:47 AM
|
0
|
0
|
1975
|
|
DOC
|
@ebpip looks like the script is having trouble finding the new view to update the settings. Can you verify the new view was successfully created? Also, are you migrating from AGOL to AGOL, or Enterprise to Enterprise? If the latter, what version of Enterprise?
... View more
03-04-2026
07:32 AM
|
0
|
0
|
11517
|
|
DOC
|
@ebpip I updated the Copy Views tool. Can you re-download these tools and try again?
... View more
03-02-2026
05:54 AM
|
0
|
0
|
11562
|
|
DOC
|
@ebpip the tool will search the target portal for the parent feature service the view is to be created off of. It looks like it's finding a File Geodatabase instead of the feature service. First, verify you have the parent feature service in the target org. Then, check if you have a File Geodatabase with the same name of the feature service. If you do, delete it and try executing the tool again. I may have to update the code to return only feature services during the search process.
... View more
02-27-2026
07:00 PM
|
0
|
0
|
11614
|
|
DOC
|
Hi @AdamPigg, thanks for the feedback. I did recently execute this for a customer and noticed the unnecessary loops, but haven't had a chance to dig back into this. For #1 and #2, how are your services published to produce the non direct descendent of dataConnection?
... View more
02-18-2026
05:49 AM
|
0
|
0
|
10165
|
|
DOC
|
@HelenWhiteley_tfl I could not reproduce the item ID issue. This is incorporated into the code: Is the Feature/Service Map Service added as an item in the target portal? Are you using Enterprise? If so, which version? Also, I'll look into adding the ability to re-path basemaps.
... View more
02-18-2026
05:46 AM
|
0
|
0
|
11681
|
|
DOC
|
@DJB you can create an API key in AGOL. Once you have the key, you can authenticate to AGOL using this. Ex: apiKey = 'AAPTxy8BH1VEsoebNVZXo8HurALPt8A8rXQeIUC-G0MzFj7nMpBAt3K7HFJHncoo32Vcbc7tQ1nwjOXtJ1gGR5HkMmM88zm_zHNoOAVg6DUGaBeVYWLFutf4FIL8W-YYsi7N76DHsmoeNfbkB41VUaurr_1FbR7S1IQJU339'
gis = GIS('https://www.arcgis.com', api_key=apiKey)
... View more
02-12-2026
06:49 AM
|
0
|
0
|
1509
|
|
DOC
|
Thanks for the feedback @denisCallens. I was able to update the tools to resolve the above issues. However I was unable to reproduce the Field Map Designer issue. I'll do some additional testing and circle back if I am.
... View more
02-06-2026
12:53 PM
|
0
|
0
|
11750
|
|
POST
|
@CoryMarino you will want an additional web adaptor to access the new Image Server. This additional web adaptor can reside on the same server where you host your Portal and ArcGIS Server web adaptors. I believe you'll receive an error if you have two nodes configured with the same Role (i.e. "Server") in your JSON file. Also, you may need to configure different directories for the Image Server vs your traditional ArcGIS Server instances. In a single JSON file, there's only one place to define this:
... View more
02-06-2026
10:48 AM
|
0
|
0
|
460
|
|
POST
|
Hi @CoryMarino , "Server" is correct for the Role. I recommend creating a separate JSON file for the Image Server instance. Below is an example: {
"AllNodes": [
{
"NodeName": "arcgis-image",
"Role": [
"Server"
],
"SslCertificates": [
{
"Path": "D:\\automationFiles\\certificates\\arcgis-image.pfx",
"PasswordFilePath": "D:\\automationFiles\\passwords\\certificate.txt",
"CNameFQDN": "arcgis-image.esri.com",
"Target": [
"Server"
]
}
]
},
{
"NodeName": "arcgis-webadaptor",
"Role": [
"WebAdaptor"
],
"WebAdaptorConfig": [
{
"Role": "Server"
}
]
}
],
"ConfigData": {
"Version": "11.1",
"ServerContext": "image",
"ServerRole": "GeneralPurposeServer",
"DownloadSetups": true,
"Downloadpatches": true,
"Credentials": {
"ServiceAccount": {
"PasswordFilePath": "D:\\automationFiles\\passwords\\serviceAccount.txt",
"UserName": "esri\\service_arcgis",
"IsDomainAccount": true,
"IsMSAAccount": false
},
"AGOCredential":{
"UserName": "myesriadmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\MyEsri.txt"
}
},
"Server": {
"LicenseFilePath": "D:\\automationFiles\\licenses\\ArcGISGISServerAdvanced_ArcGISServer_1428926.prvc",
"Installer": {
"Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Server_Windows_111_185208.exe",
"InstallDir": "D:\\Program Files\\ArcGIS\\Server",
"patchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
},
"ServerDirectoriesRootLocation": "D:\\arcgisserver\\directories",
"ConfigStoreLocation": "D:\\arcgisserver\\config-store",
"ExternalLoadBalancer": "gis.esri.com",
"PrimarySiteAdmin": {
"UserName": "siteadmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\siteadmin.txt"
}
},
"WebAdaptor": {
"AdminAccessEnabled": true,
"Installer": {
"Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Web_Adaptor_for_Microsoft_IIS_111_185222.exe",
"PatchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
}
},
"Federation": {
"PortalHostName": "gis.esri.com",
"PortalPort": "443",
"PortalContext": "portal",
"PortalAdministrator": {
"UserName": "portaladmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\portaladmin.txt"
},
"RestrictedPublishing": false
}
}
}
... View more
02-05-2026
01:59 PM
|
0
|
1
|
474
|
|
POST
|
Hi @Yogesh_Chavan how is the CPU and RAM on the ArcGIS Server machines when they eventually stop working? ArcGIS Server should check if the other machine is up and running if it's joined to the site, but this shouldn't cause the application to crash. You could completely remove it from the site in ArcGIS Server Manager > Site > Machines and see how ArcGIS Server performs.
... View more
01-27-2026
04:41 AM
|
0
|
0
|
509
|
|
POST
|
Hi @MatsHardy the only option I believe you have is to update the symbology of the map service directly in the web map.
... View more
01-27-2026
04:35 AM
|
0
|
0
|
275
|
|
DOC
|
Thanks @AndreaB_ for reporting this back on the thread. I was not aware of this limitation.
... View more
01-26-2026
10:23 AM
|
0
|
0
|
8165
|
|
DOC
|
@AndreaB_ I could not reproduce this using Pro 3.6.1. Could you publish another service, create a view, and test the script with the new service? This will determine if it's an issue with the script/API, or with the service.
... View more
01-21-2026
04:22 PM
|
0
|
0
|
8350
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 01-20-2026 04:04 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|