DOC
|
@GIS-KompetenzzentrumBern can you walk me through your workflow of how you're embedding the Feature Layer?
... View more
yesterday
|
0
|
0
|
39
|
POST
|
@JV_ I would test with another Pro Project, and also another ArcGIS Pro client machine.
... View more
yesterday
|
0
|
0
|
27
|
POST
|
@JV_ if you Analyze the map by publishing it manually, are there any errors reported?
... View more
yesterday
|
0
|
2
|
31
|
POST
|
@chris_del101 try the following: item_properties = {
'title': itemTitle,
'type': 'File Geodatabase',
'description': item.description,
'accessInformation': item.accessInformation,
'licenseInfo': item.licenseInfo,
'overwrite': True
}
root_folder = trg.content.folders.get()
fgd = root_folder.add(item_properties=fgd_properties, file=download_result).result()
targetService = fgd.publish(overwrite=True) Note: The property `overwrite` is deprecated and support will be removed two releases after 2.4.0 for the item_properties.
... View more
yesterday
|
0
|
0
|
37
|
POST
|
Hi @LDreyfuss, Execute the Geocode Addresses GP tool in Pro. If this is successful, click the dropdown arrow next to Run and select Copy Python Command. Compare this to what you have in your script. This may help you troubleshoot what's going on.
... View more
yesterday
|
0
|
0
|
26
|
POST
|
@GISiste, Verify the ArcGIS Service Account for each ArcGIS application (Portal, Server, Data Store) is the same Verify the shared_location and backup_location in the .properties file is a network share Verify the ArcGIS Service Account has FULL CONTROL of this network share Verify the user running the webgisdr has FULL CONTROL of this network share
... View more
yesterday
|
0
|
0
|
17
|
POST
|
Hi @Leandro-Zamudio , Try the following: from arcgis.gis import server
# Variables
agsURL = 'dsn.domain.com/webadaptor' # ArcGIS Server URL
username = 'portaladmin' # Portal credentials if federated
password = '**********'
folder = 'Public' # name of ArcGIS Server folder
# Connect to ArcGIS Server
agsServer = server.Server(url=f"https://{agsURL}", username=username, password=password)
# Iterate through services
for service in agsServer.services.list(folder):
print(service)
... View more
Thursday
|
1
|
0
|
12
|
POST
|
Hi @chris_del101, What version of Enterprise and what version of the ArcGIS API for Python are you using?
... View more
Thursday
|
0
|
0
|
75
|
POST
|
@GISiste are you able to successfully generate the webgisdr from the source environment? If so, I would recommend starting over for your target environment: Uninstall all ArcGIS applications Delete their corresponding directories (i.e. /Program Files/ArcGIS/Portal, /arcgisportal, /arcgisserver, etc) Modify the hosts files on each server Reinstall the 10.8.1 Verify you can access the target environment using the URL from the source environment Restore the webgisdr Upgrade to 11.3
... View more
Thursday
|
1
|
1
|
47
|
DOC
|
@Henry delete line 158: root_folder = gis.content.folders.get() Then change line 159 from: fgd_item = root_folder.add(item_properties=fgd_properties, file=gdb + ".zip").result() to: fgd_item = gis.content.add(item_properties=fgd_properties, data=gdb + ".zip")
... View more
Wednesday
|
0
|
0
|
30
|
DOC
|
@denisCallens in the Python 3 command prompt, ArcGIS Pro Notebook, or Python IDE, try executing the below code: from arcgis.gis import GIS
gis = GIS('https://dns.domain.com/portal', 'built-in-user', 'password', verify_cert=False)
Does this work successfully?
... View more
Tuesday
|
0
|
0
|
103
|
POST
|
Hi @GISiste, The best way to migrate from one environment to another is using the webgisdr. See the following document. However, the environments must match (i.e. same version), so you're workflow would be: 1. Install ArcGIS Enterprise 10.8.1 in target environment using the same external URL by modifying the etc/hosts files 2. Create the webgisdr from source environment 3. Restore the webgisdr in target environment 4. Upgrade target environment to 11.3
... View more
Tuesday
|
2
|
1
|
92
|
DOC
|
@denisCallens do you have Windows Authentication enabled on Portal's web adaptor? If so, you need to check the box highlighted below: This will remove the username/password parameters and attempt to authenticate using your windows credentials.
... View more
Tuesday
|
0
|
0
|
131
|
DOC
|
@chris_del101 1. Can you send a screen shot of Portal > Organization > Settings > Security > Logins: 2. Is there an '@' symbol in your username? For example, jskinner@ESRI. 3. Check the casing of your username. 4. What version of ArcGIS Pro and ArcGIS Enterprise are you running?
... View more
Monday
|
0
|
0
|
149
|
DOC
|
@chris_del101 what type of security are you attempting to sign in with (i.e. Built-in, Active Directory, SAML)? Only built-in and active directory are supported. Check the comment above your last one that has a python snippet. Does this work for you?
... View more
Monday
|
0
|
0
|
186
|
Title | Kudos | Posted |
---|---|---|
1 | Thursday | |
1 | Thursday | |
2 | Tuesday | |
4 | 01-17-2024 12:38 PM | |
1 | 08-23-2024 11:26 AM |
Online Status |
Online
|
Date Last Visited |
3 hours ago
|