|
POST
|
Yep you sure did. My apologies. When I saw the maintenance banners on some of the pages on Friday I thought that included Hub because for some reason I had the 14th in my head.
... View more
05-17-2021
07:53 AM
|
0
|
0
|
4480
|
|
POST
|
Hi @MarcusVDSilva It was my understanding the update occurred May 14, not May 24....
... View more
05-17-2021
07:01 AM
|
1
|
2
|
4523
|
|
POST
|
Good morning - Since the Friday, May 14 update we cannot access our open data site at https://data-sarco.opendata.arcgis.com/ We (or I) also cannot get into HUB from our arcgis online org. The console log shows invalid certificates: GET https://hubcdn.arcgis.com/opendata-ui/assets/assets/vendor-a700dba94ff57b3cd494889d928556c7.css net::ERR_CERT_DATE_INVALID (index):34 GET https://hubcdn.arcgis.com/opendata-ui/assets/assets/vendor-6b2e8ae55ef8b0cec447e0715f7e151d.js net::ERR_CERT_DATE_INVALID (index):78 GET https://hubcdn.arcgis.com/opendata-ui/assets/assets/opendata-ui-8e0272bc402f4126df371e2357bd834f.js net::ERR_CERT_DATE_INVALID (index):79 GET https://hubcdn.arcgis.com/opendata-ui/assets/assets/esri-loader.min-a4e7aabd633bd620073497c7ccae43f5.js net::ERR_CERT_DATE_INVALID (index):45 Thanks-
... View more
05-17-2021
06:47 AM
|
1
|
10
|
5127
|
|
POST
|
ok thanks @JonEmch . I did go through that announcement, but for some reason it just wasn't clear to me (not that it's not clear to others!). It now reads to me that after the Enterprise 10.9 upgrade, running the beta map viewer 5 exe will just detect the earlier version and (as you say) will keep on keeping on! Thanks again 🙂
... View more
05-13-2021
12:21 PM
|
1
|
0
|
6607
|
|
POST
|
Hi again @JonEmch - can you confirm the same for the Map Viewer Beta and Portal for ArcGIS web styles at 10.8.1? I have a distributed deployment and believe I need to un-install both prior to the 10.9 upgrade, then re-install the latest versions post-install . . .
... View more
05-13-2021
09:45 AM
|
1
|
6
|
6618
|
|
POST
|
Hi @XanderBakker - yes thank you that was it. Sorry to have hi-jacked your post @Anonymous User. The only behavior that was similar - maybe - to what you are experiencing was this: At the last beta release in Online of the MapViewer, I noticed that my custom Image basemap was behaving oddly. The basemap included the world image service, a tile cache, local image service in wkid 3857, and a vector tile cache (streets and labels) in the same web mercator spatial reference. For whatever reason, my local tile cache image service was 'shifted' - as if the final Map Viewer beta was not picking up a transformation. I should tell you that the local tile cache service is created from a mosiac dataset in Pro that contains a re-project function (so I would not have to re-project all of the source tiffs). However, this seems to have been resolved as I am not seeing the same behavior in the New Map Viewer . . .
... View more
05-12-2021
12:23 PM
|
2
|
0
|
2230
|
|
POST
|
Way to go John thanks for posting this. You know, I saw this on the sessions but was like 'nah, I'm good - I haven't read or seen any blogs or posts on any Monitor changes . . .' But - moving away from MongoDB is for sure a major change and is definitely something to be tackled separately. So it is no surprise that this version would not necessarily be ready at the 9.0 release. So maybe it will be released later this summer or with 9.1 - I guess we'll see . . .
... View more
05-12-2021
11:52 AM
|
1
|
0
|
3427
|
|
POST
|
Hello - I can't seem to find whether or not I should uninstall my current FieldMaps app from my Portal at 10.8.1 before I run the upgrade to 10.9. I can see from the 'What's new' that Field Maps is now included at 10.9, but I can't seem to find anything that says I should uninstall the latest 10.8.1 version.. . . I'm assuming I should but, I don't know for sure- Thanks-
... View more
05-07-2021
12:50 PM
|
1
|
10
|
7454
|
|
POST
|
Brian - In addition to what Michael has posted, everything you need to get started is contained in this sample: https://pro.arcgis.com/en/pro-app/latest/arcpy/sharing/featuresharingdraft-class.htm#C_GUID-4EAB8A36-C06E-488C-8F0F-AC32014A3716 Or you can go here: https://pro.arcgis.com/en/pro-app/latest/arcpy/mapping/createweblayersddraft.htm#C_GUID-AAC21E52-6C69-46D2-ADD8-C62224CE5826 and look at the last sample in the list. For either one, you could put them in a conditional like this: for m in aprx.listMaps("AppraiserLayers"):
print("Map: " + m.name)
for lyr in m.listLayers():
if lyr.name == 'PropertySalesPublic':
lyrList = []
lyrList.append(m.listLayers(lyr.name)[0])
print(lyr.name)
stageSDDraft(m, lyr.name, "snippit", lyrList, "descript","Portal Folder","tags","sd folder on your drive")
print(lyr.name + " Draft Created")
arcpy.StageService_server('C:/ArcProProjects/PortalUpdates/Appraiser/' + lyr.name + '.sddraft', 'C:/ArcProProjects/PortalUpdates/Appraiser/' + lyr.name + '.sd')
print(lyr.name + " Service Staged")
arcpy.UploadServiceDefinition_server('C:/ArcProProjects/PortalUpdates/Appraiser/' + lyr.name + '.sd', 'My Hosted Services', "","","","","","OVERRIDE_DEFINITION","SHARE_ONLINE","PUBLIC","SHARE_ORGANIZATION","")
print(lyr.name + " Service Uploaded")
message = message + "\n" + "1. " + (lyr.name) + " Service Uploaded" but I still like to keep the old blog that Michael posted in his reply handy because its helpful to see how to use both arcpy and the arcgis api together
... View more
05-07-2021
12:45 PM
|
1
|
0
|
2021
|
|
POST
|
Yes true. Technically I could still be using a 10.6 or earlier version of monitor. Yes, agreed. After 10.9.1
... View more
05-07-2021
12:04 PM
|
0
|
0
|
3474
|
|
POST
|
Josh I've found (as I'm sure you have) that alot of these security update patch types don't always make it into the PatchNotification tool. At least they don't for me. If it's as serious as they say, I'm doing the download route. ....sigh
... View more
05-06-2021
02:01 PM
|
0
|
0
|
2687
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-01-2026 05:41 AM | |
| 1 | 06-26-2026 12:39 PM | |
| 6 | 06-25-2026 07:23 AM | |
| 1 | 06-17-2026 06:04 AM | |
| 1 | 06-08-2026 08:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|