|
POST
|
glad to hear that's all it was, thanks for letting us all know @marksm_macomb
... View more
05-15-2023
06:20 AM
|
0
|
0
|
2794
|
|
POST
|
You're not getting the error too, are you @NicolasGIS ?
... View more
05-12-2023
06:00 AM
|
0
|
0
|
2839
|
|
POST
|
Ok thanks for the feedback on this @MarleyGeddes - I plan to keep an eye on this and other issues as well through the next week or so . . .
... View more
05-11-2023
11:05 AM
|
0
|
0
|
3412
|
|
POST
|
Hmm, thanks for pursuing this @NicolasGIS - @MarleyGeddes , do you (or anyone else @BillFox ) know if sharing items to groups through the ArcGIS Api for Python or, in the case of feature layer writes and overwrites via sddraft + sd files via the ArcPy sharing module is impacted at 11.1 - or is it just through the Content or item details pages? For example, using the api I update sharing all the time: try:
portItems = gis.content.search(query="owner:myusername_portal", item_type="Feature Layer", sort_field="title", sort_order="asc", max_items=5000)
for portItem in portItems:
if (portItem.title == "CPBoundary"):
portFL = FeatureLayerCollection.fromitem(portItem)
print (portItem.title)
portFL.manager.update_definition(updateDict)
#portItem.update(item_properties=itemProperties) #,data=None, thumbnail=None, metadata=None)
portItem.share(everyone=False,org=False,groups="mylonggroupid")
print(portFL.properties)
message = message + "\n" + "1. " + (portItem.title) + " Sync Enabled: " + str(portFL.properties.syncEnabled)
except Exception:
# If an error occurred, print line number and error message
import traceback, sys
tb = sys.exc_info()[2]
e = sys.exc_info()[1]
print(e.args[0])
print ("Line %i" % tb.tb_lineno)
message = message + "\n" + "Line %i" % tb.tb_lineno
message = message + "\n" + str(e) or use the sharing module for overwrites: try:
portal = arcpy.SignInToPortal("https://host.org.net/portal", "myusername_portal", "mypassword")
aprx = arcpy.mp.ArcGISProject('C:/ArcProProjects3x/PortalUpdates/PortalUpdates.aprx')
for m in aprx.listMaps("Facility Layers"):
print("Map: " + m.name)
for lyr in m.listLayers():
if lyr.name == 'CurrentCodeViolationPoint':
lyrList = []
lyrList.append(m.listLayers(lyr.name)[0])
print(lyr.name)
stageSDDraft(m, lyr.name, "The Code Violation Point layer contains various types of property, building, zoning, resource protection and other code compliance issues for . . .",
lyrList,"The Code Violation Point layer contains various types of property, building, zoning, resource protection and other code compliance issues for. . . ",
"ServiceSafetyLayers","Planning,Services","FacilitySafety")
print(lyr.name + " Draft Created")
arcpy.StageService_server('C:/ArcProProjects3x/PortalUpdates/FacilitySafety/' + lyr.name + '.sddraft', 'C:/ArcProProjects3x/PortalUpdates/FacilitySafety/' + lyr.name + '.sd')
print(lyr.name + " Service Staged")
arcpy.UploadServiceDefinition_server('C:/ArcProProjects3x/PortalUpdates/FacilitySafety/' + lyr.name + '.sd', 'My Hosted Services', "","","","","","OVERRIDE_DEFINITION","SHARE_ONLINE","PRIVATE",
"NO_SHARE_ORGANIZATION","MyGroup") #Code Enforcement and Planning Group
print(lyr.name + " Service Uploaded")
message = message + "\n" + "2. " + (lyr.name) + " Service Uploaded"
except Exception:
# if an error occurred, print line number and error message
import traceback, sys
tb = sys.exc_info()[2]
e = sys.exc_info()[1]
print(e.args[0])
print ("Line %i" % tb.tb_lineno)
message = message + "\n" + "Line %i" % tb.tb_lineno
message = message + "\n" + str(e)#e.message I can't test this because I'm not at 11.1 yet obviously....
... View more
05-11-2023
10:12 AM
|
0
|
1
|
3421
|
|
POST
|
No, you clearly can't permanently set to 'All Group Members' and neither could I. Geez, I don't think I've this many upgrade issues with a release before. From custom print services not working: https://community.esri.com/t5/arcgis-enterprise-questions/arcgis-enterprise-11-1-is-not-printing-features/m-p/1286563#M35841 to the hosting server not communicating with the datastore: https://community.esri.com/t5/arcgis-enterprise-questions/missing-hosted-feature-classes-after-upgrading-to/m-p/1286278#M35815 to your web adaptor issue: https://community.esri.com/t5/arcgis-enterprise-portal-questions/arcgis-enterprise-11-1-oauth-regression/m-p/1284741#M13466 to Data Clients not behaving: https://community.esri.com/t5/arcgis-enterprise-extensibility-questions/enterprise-sdk-11-upgraded-soe-now-ruturns/m-p/1287407#M334 to loss of access to Microsoft Azure Active Directory user store: https://community.esri.com/t5/arcgis-enterprise-questions/sign-in-screen-error-when-accessing-portal-via/m-p/1287099#M35868 to bad behavior of the WMS Services (although there is now a patch for this): https://community.esri.com/t5/arcgis-enterprise-questions/strange-behaviours-on-wms-service-from-arcgis/m-p/1285512#M35786 I am scheduled to do my upgrade this weekend but I think I have to pull the plug on that. I have no webgisdr tool because my Federated site name 'agsfed' contains letters that appear in the word 'admin' and so it won't run. I have to depend purely on a snapshot and content backup if anything goes wrong. And it sure seems like LOTS of things are going wrong.
... View more
05-10-2023
07:46 AM
|
0
|
0
|
6477
|
|
POST
|
Hi @NicolasGIS - do you think this in anyway has anything to do with what you did here: https://community.esri.com/t5/arcgis-enterprise-portal-questions/arcgis-enterprise-11-1-oauth-regression/m-p/1284741#M13466 with the web adaptor and proxy issues you encountered? And this is probably obvious, but did you try toggling the 'who can share' setting and then try save again? @JalesM @JeffSmith
... View more
05-10-2023
07:18 AM
|
1
|
0
|
6482
|
|
POST
|
Interesting @ChristopherPawlyszyn , thank you for the feedback. This may not be relevant, but I have been working in a mixed deploy since the 11.0 release. Our Portal, hosting site, and datastores are at 11.0, but we had to leave the federated site at 10.9.1 as we had to support a couple of services with Geometric networks and so had to have the ArcMap runtime. With the upgrade to UN 6 we cam finally move everything forward to 11.1
... View more
05-08-2023
06:56 PM
|
0
|
1
|
1457
|
|
POST
|
Yes thanks @JalesM Yeah I will not open a support ticket for this. We're upgrading because we have to move forward with the UN at version 6, and for documented bugs that 11.1 fixes... Still this federated site is a mature install, it's supported Server and ImageServer since 10.6. So this will mark it's 9th overall upgrade - but if this issue persists at 11.1, then I'll open a support ticket.
... View more
05-08-2023
11:27 AM
|
0
|
0
|
1473
|
|
POST
|
Ok thanks for the update @JeffSmith - yes, we could not just switch to the Java version of the WA. That being said, we use f5 for our front end traffic cop - it does no load balancing for us. Still, I do not think that, by default this is an issue for f5 front ends.
... View more
05-08-2023
11:15 AM
|
0
|
0
|
5327
|
|
POST
|
Hello - I posted on this topic late last year: https://community.esri.com/t5/arcgis-enterprise-questions/arcgis-server-11-0-directory-traversal/td-p/1219790 I was able to resolve the issue by re-starting the data store service after applying the traverse patch. But it is interesting that you are seeing the errors before applying the patch. I did not see these webhook errors until after applying the patch.
... View more
05-08-2023
06:47 AM
|
0
|
0
|
9484
|
|
POST
|
Hi all - @JeffSmith , I don't see how anyone in a Windows shop can just switch over the java edition web adaptor, so what does this mean in practical terms? Does this mean that developer edition apps like EM and or the WAB that are registered with Portal at 11.1 cannot login? Or does this mean that Portal-hosted WABs, EBs and Instant Apps, if not shared with 'Everyone' cannot be accessed? I have the upgrade scheduled for this weekend and am trying to run down any of the gotchas that have appeared in GeoNet thus far
... View more
05-08-2023
06:25 AM
|
1
|
2
|
5355
|
|
POST
|
In my experience this is a Server error, not a Datastore error or Portal error. Something is preventing Server from communicating with datastore. For example, whenever something interrupts an overwrite of a hosted feature service via the arcpy sharing module, I will see this exact behavior. The hosted feature still appears in portal, the service still appears in the Hosted directory in Manager, and still shows in the Rest. Yet accessing the layer in the Portal data tab will display 'There was an error'. You say the federated site validates with portal, but does the relational datastore validate with server? For Server Manager>Site>DataStores : if the relational datastore validates with server - have you been able to overwrite any of the services? If you can, then you could just try overwriting the services. If the overwrites don't work, can you write new layers to the datastore? Time consuming of course. If the relational datastore does not validate with Server I would try re-running the Server install. Regardless, this to me that says some type of communication loss happened during the Server upgrade and corrupted the configs.
... View more
05-07-2023
08:44 AM
|
0
|
0
|
2946
|
|
POST
|
Thanks for the suggestions @JalesM , but at this point I will just manage the logs at the root location as I'm updating to 11.1. If this site were to remain at 10.9.1 I'd go through restore attempts, but everything is working fine, there are no other issues. Monitor shows the 2 federated site machines remain balanced in soc count, memory use, cpu etc.
... View more
05-07-2023
08:20 AM
|
0
|
0
|
1490
|
|
POST
|
Yeah unfortunately no help with the reboots. The json reads what I have set in my server admin - i.e. { "logDir": "C:\\arcgisserver\\logs\\", "logLevel": "WARNING", .....} Thanks for that.... It certainly is possible something corrupted with an image service (or other map service) at the moment I removed the runtime but there is no indication of that in any other way - they've all been authored in Pro long ago. Like I said above, when I did remove the runtime I found 30 - 40 thousand name-truncated logfiles dumped out to the root. So, you know? I can tell you I would have NEVER removed the runtime early (early meaning I wanted to remove the runtime before I run the upgrade from 10.9.1 to 11.1on this site) if I knew that that this would happen - - No one would. Yet another unexpected behavior. I'm probably going to have to set up a net stop "ArcGIS Server" and a net start as bat files to stop and start the arcgis server windows service until I can upgrade in 12 days. @ChrisUnderwood
... View more
05-05-2023
11:03 AM
|
0
|
1
|
2743
|
|
POST
|
I don't know - I'm going to try a full server reboot at the lunch hour, see if that helps
... View more
05-05-2023
08:51 AM
|
0
|
3
|
2771
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 6 | 3 weeks ago | |
| 1 | a month ago | |
| 1 | 06-08-2026 08:37 AM |
| Online Status |
Online
|
| Date Last Visited |
4m ago
|