|
DOC
|
@KristalWalsh do you know if you are using a built-in AGOL account? Or, are you using a SAML user account? With SAML, there is an icon you can click that will sign you in using the same account you typically sign into Windows with.
... View more
08-30-2024
10:13 AM
|
0
|
0
|
23416
|
|
DOC
|
@AryamanBhattacharya_BeansAI this already exists. Click the arrow next to the Source User/User Content parameter: Then click the top checkbox to select all:
... View more
08-30-2024
08:46 AM
|
0
|
0
|
13586
|
|
DOC
|
@MattiasEkström actually, I just got off the phone with a customer where we executed this script. They had several Data Store connections to different databases, and all on the same SQL instance. They updated them all using a new SDE connection file. We only had to run the script once since there was only one instance. The script will still update the service instance even though the previousDSID was not found.
... View more
08-30-2024
07:27 AM
|
0
|
0
|
23401
|
|
DOC
|
@MattiasEkström It's aldready been discussed in this thread but just to be clear, if I just update my existing datasource with a new .sde file, will everything work except the service workspace dialog shows old values? Yes, that is the easiest option. You can then execute the script afterwards to update the workspace connection info. Simply use the same value for the previousDSID and newDSID variables in the script. But if we set that alias for the old/existing server I would have to update all my current connections to the database to use the alias instead of the server name right? Yes, that is also correct.
... View more
08-30-2024
05:41 AM
|
0
|
0
|
23439
|
|
DOC
|
@CommunityMapsEsriColombia migrating from ArcGIS Online to Enterprise will not be supported. ArcGIS Online is always at a later release than Enterprise, so applications will fail to open. What should work is migrating Web Maps and Hosted Feature services from AGOL to Enterprise, but I have not extensively tested this. Ideally, you should only be migrating content between the same environments (i.e. AGOL --> AGOL, Enterprise 11.1 --> Enterprise 11.1).
... View more
08-29-2024
10:25 AM
|
0
|
0
|
37821
|
|
DOC
|
@JakeHanson-eaglenz once I learn GitHub, I'll post it there.
... View more
08-29-2024
10:22 AM
|
0
|
0
|
37824
|
|
DOC
|
@jdcayetano no, this should not be a concern. The script did not delete a temporary zip file mentioned in the path above.
... View more
08-29-2024
10:22 AM
|
0
|
0
|
37827
|
|
POST
|
@mhudson I received confirmation that you can kick off the installers simultaneously. The post-upgrade order is the only thing that matters.
... View more
08-23-2024
11:26 AM
|
1
|
1
|
3323
|
|
DOC
|
@jakek are you using a SAML IDP (i.e. Entra, Okta)? Unfortunately, SAML is not currently supported. You will need to use a built-in account, or an Active Directory account. If using an Active Directory account, windows authentication cannot be enabled at the web adaptor level.
... View more
08-23-2024
07:27 AM
|
0
|
0
|
13686
|
|
POST
|
Hi @nacelle_pylon, Here is some code I use to stop all services. May be worth testing with this to see if you get the same error. from arcgis.gis import server
# Variables
serverURL= 'https://ags.esri.com/server' # ArcGIS Server URL
username = 'portaladmin',
password = 'portal1234'
# Connect to ArcGIS Server
# If ArcGIS Server is federated, use Portal credentials
# If ArcGIS Server is non-federated, use AGS credentials
agsServer = server.Server(url=serverURL, username=username, password=password)
# Create list of folders
folderList = [folder for folder in agsServer.content.folders if folder != 'Hosted'
and folder != 'System' and folder != 'Utilities']
folderList.append('')
# Stop services
for folder in folderList:
for service in agsServer.services.list(folder):
service.stop()
... View more
08-23-2024
06:18 AM
|
0
|
0
|
1092
|
|
POST
|
Was the EXB app created with the EXB App Developer Edition? I'm not an expert with EXB, but I'm not sure if you can create an app in the DEV edition, and publish to AGOL/Enterprise.
... View more
08-20-2024
10:15 AM
|
0
|
0
|
1550
|
|
DOC
|
@LouisDECOMBE I'm having trouble reproducing this with the latest script. Are you seeing the similar print statements in your IDE console when you execute the script:
... View more
08-20-2024
10:09 AM
|
0
|
0
|
23685
|
|
DOC
|
@LouisDECOMBE I'm not sure which release, but it looks like the MSD files, when extracted, now contain a directory called layers instead of map. I've updated the script to accommodate for this. Try the latest script and let me know if this resolves the issue.
... View more
08-19-2024
04:55 PM
|
0
|
0
|
23815
|
|
POST
|
Hi @CS_IBM, Try the following: # Data
layers=r"C:\EXB\v3.zip"
# XEB.zip to AGOL
file = gis.content.add(
item_properties={"type": "Web Experience", "title": "v3",
"description": "v3 Layers", "tags": "v3 Layers",
},
data=layers,
)
# Publish Experience Builder App
app_properties = {'typeKeywords': 'status: Published'}
file.update(item_properties=app_properties)
... View more
08-19-2024
04:59 AM
|
1
|
0
|
1565
|
|
DOC
|
@Levon_H @BrianShepard I tested the script this morning and everything executed successfully. Can you test again on your end?
... View more
08-19-2024
04:45 AM
|
0
|
0
|
14841
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 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 |
Online
|
| Date Last Visited |
6 hours ago
|