|
POST
|
Hey Adam, Can you reply with one of the files you're trying to upload? According to the doc below, .kml is supported. What can you add to ArcGIS Online?—ArcGIS Online Help | Documentation Thanks, Josh
... View more
11-09-2020
12:54 PM
|
0
|
1
|
1003
|
|
POST
|
Can you please share the exact error message you get when logging in?
... View more
10-26-2020
01:42 PM
|
0
|
3
|
4026
|
|
POST
|
Hi Andrea, Have you tried validating the Data Store from the server admin endpoint? (https://server.domain.com:6443/arcgis/admin > data > items > enterpriseDatabases > AGSDataStore... > machines > <machineName> > validate). This validation process will give you a more in-depth look at the Data Store. Is there a particular pattern you've noticed when it comes to which services are still working? For example, are they services that were published around the same time? Thanks, Josh
... View more
10-26-2020
01:40 PM
|
0
|
2
|
3331
|
|
POST
|
Hi Tony, I'm wondering if you need to keep the connection to the FTP open while you login, as demonstrated in the documentation for the ftplib module. ftplib — FTP protocol client — Python 3.9.0 documentation Something like this: with FTP("ftp.proper.com") as ftp: ftp.login('blahuser', 'blahpass') # ... do more stuff
... View more
10-26-2020
01:30 PM
|
0
|
1
|
4255
|
|
POST
|
It's possible, but not directly through the Python API. You'd want to get the web map JSON, modify it to your liking, and use the item.update() function from the API to apply the changes. More on this below: Configure Popup Attributes Programmatically with ArcGIS API for Python popupInfo | ArcGIS for Developers arcgis.mapping module — arcgis 1.8.2 documentation
... View more
09-14-2020
01:05 PM
|
1
|
0
|
3970
|
|
POST
|
Great to hear! I found the technical article below and it explicitly says that zipped shapefiles over 10MB cannot be added directly to the map. Problem: Receiving errors when uploading a shapefile to ArcGIS Online, Business Analyst Online, or Community Analyst Have a great rest of your day!
... View more
08-31-2020
06:12 AM
|
0
|
0
|
3414
|
|
POST
|
Bimall, Ah, you're using a different workflow than what I was testing. When I do "Add Layer from File" in the Map Viewer, I get this error: Try this workflow and let me know the results: Navigate to your Content. Click Add Item > From your computer. Browse to the file. Check the box for "Publish this file as a hosted layer." Click "Add Item". Does this work?
... View more
08-31-2020
05:54 AM
|
0
|
2
|
3414
|
|
POST
|
Bimall, I successfully uploaded and published the zipped shapefile that you supplied in my AGOL organization. Can you provide more context regarding the errors you're getting? After the upload fails, navigate back to your Content. Is the shapefile item created? Thanks, Josh
... View more
08-28-2020
08:28 AM
|
0
|
4
|
3414
|
|
POST
|
Hey Berend, I got this to work by putting the tag in double quotes: q=tags:"tag1" OR "tag2" Let me know if this works for you! Best, Josh
... View more
08-06-2020
06:18 AM
|
1
|
1
|
3902
|
|
POST
|
Hello, I'm not familiar with method of authentication but would be happy to take a look. Can you share where you normally get the token from? Thanks, Josh
... View more
08-05-2020
05:20 AM
|
0
|
1
|
3051
|
|
POST
|
Hi Jason, Can you check to see if there's any relevant entries in Portal or Server logs? Portal: https://<PortalURL>/<WebAdaptor>/portaladmin/logs Server: https://<ServerURL>/<WebAdaptor>/manager/log.html Also, can you try adding a field again with the browser's dev tools open? If you inspect the network traffic, do you see any failed requests? What do the responses look like? -Josh
... View more
08-05-2020
05:11 AM
|
0
|
0
|
981
|
|
POST
|
I'm not sure why that cert is failing validation. As mentioned above, the workaround is to skip the validation process all together. The code below worked for me: from urllib.request import urlopen from zipfile import ZipFile import ssl zipurl = "https://apps.ohiodnr.gov/geodata/Statewide/OGWells_statewide.zip" # Download the file from the URL gcontext = ssl.SSLContext() zipresp = urlopen(zipurl, context=gcontext)
... View more
07-08-2020
01:50 PM
|
0
|
0
|
5886
|
|
POST
|
What browser are you using? I just tested an internal 10.8 in both Chome and Firefox with no issues. Can you provide a link to a feature layer where this issue is occurring? EDIT: I missed the part about viewing it on mobile. I was able to repro in my Portal.
... View more
07-08-2020
01:16 PM
|
0
|
1
|
1533
|
|
POST
|
I think and according to the documentation inServer (line 14 in your code above) should be the path to an ArcGIS Server connection created through ArcCatalog/ArcMap/Pro. "You can use ArcGIS for Server connections listed under the GIS Servers node in the Catalog window, or you can navigate to a different folder where you might have server connection files stored. If you are connecting to ArcGIS Online, make sure you type My Hosted Services for the server connection with each word capitalized and a space between each word." Upload Service Definition—Help | ArcGIS for Desktop ...I believe the correct format for the federatedServerURL parameter is: https://server.domain.com/webadaptor
... View more
07-08-2020
01:06 PM
|
0
|
1
|
1615
|
|
POST
|
No worries! Michael Volz above mentioned something that I didn't notice. You're making the request over HTTP instead of HTTPS. Do you get the same behavior if you change the URL to https://apps.ohiodnr.gov/geodata/Statewide/OGWells_statewide.zip? In my first post, I'm referring to the certificate presented by apps.ohiodnr.gov and yes, ideally this certificate would pass validation in a script like this.
... View more
07-08-2020
01:02 PM
|
0
|
2
|
5886
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-01-2025 05:40 AM | |
| 1 | 02-28-2025 07:11 AM | |
| 1 | 01-16-2025 05:35 AM | |
| 2 | 01-14-2025 06:48 AM | |
| 2 | 01-10-2025 08:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-13-2026
01:43 PM
|