|
POST
|
Hi @TonghuiMing - thanks for the reply and yes potentially I've maybe isolated the issue. It could also be device specific too. I've just upgraded my Pixel 5 to a Pixel 8 pro, and the map issues on the Instant apps and the ExB app are no longer present, whether point layers are present or not. The maps no longer flicker, go black, or disappear below certain scales on the 8 pro. I can say that the 'Allow Resize' option does not function on the pixel 5 or 8, although the 'Allow Expand' continues to work.
... View more
11-16-2023
07:14 AM
|
0
|
0
|
4974
|
|
POST
|
Well, I'm completely stumped on this. I tried republishing my feature layer collection of water device POINTS from pro with the "use symbol types compatible with all clients", re-creating a simple map and publishing that map in a simple Basic Viewer Instant App. Same results - map disappears below certain scale levels when more than one point layer is visible. Doesn't seem to matter if the map uses grouped layers or not. Doesn't seem to matter is the map is saved in map viewer classic. What does seem to matter is whether or not the Point Layers are visible. My earlier reply with my Sidebar instant app does not have any point layers. So I wrongly assumed that the problem was ExB. But as @TonghuiMing correctly pointed out, the problem is in the Map Viewer on Android (but not iOS) because it continues to show here: https://sarco.maps.arcgis.com/apps/instant/basic/index.html?appid=d7e15b494181451685d235e52dd1f52d Thanks
... View more
11-15-2023
01:13 PM
|
1
|
2
|
4983
|
|
POST
|
Hello @TonghuiMing - will you be reporting back here when and if an issue is logged and when we can expect a fix? Otherwise I am going to turn this post into a support case and go from there.
... View more
11-09-2023
06:25 AM
|
0
|
0
|
5060
|
|
POST
|
Hmm, not sure I agree completely. I have a sidebar instant app here: https://sarco.maps.arcgis.com/apps/instant/sidebar/index.html?appid=65828fd9b26246cb9a994a3bf460476c that has grouped layers in its layer list and is summarizing data values per district via FeatureSetbyName in the map$ profile and it doesn't have any problems on Android. But, we did test Chrome on the iOS 14 for my app and it works just fine, so this is an Android issue for sure with the ExB and needs attention....
... View more
11-08-2023
06:30 AM
|
0
|
0
|
5081
|
|
POST
|
Hello - I've spent many hours tuning my 3-page experience. This is a Utility Locator with a home page, a water map and a sewer map. I am using a layer list, legend, search and near-me widgets in both maps. For the map pages, the experience is using a custom Grid layout, each tuned to go 'go vertical' for Tablet and Mobile sizes. On Desktop in Chrome, the expand and full screen options work just fine. On/in an Pixel 5>Android 14 >Chrome Browser, the expand function for the Grid does not work, the full screen option does. More disturbingly however, the map begins to 'flicker' when zoomed into 1000ft, and then disappears entirely when zoomed in further. I tested the experience (dart layout) that can be found in this recent post: https://community.esri.com/t5/arcgis-experience-builder-questions/map-freezes-or-locks-up-when-panning-or-zooming/m-p/1345040#M9130 and the same behavior is displayed when zooming the @Matt-Barrett map as well, so I would say the behavior is not unique to the Grid layout on mobile android. I can say that in both experiences, grouped layers are being used from the webmap and consumed in the layer list widget. When I turn off the grouped layers at the group level, the map does remain visible on screen, but the Grid layout expand capability remains disabled. Lastly, I have tested my experience on iPhone14 and iPhone15 Safari and everything behaves as expected, in fact very nice on the iPhone15 Pleas see for yourself if you have time: https://experience.arcgis.com/experience/b6f8a5bc44e145c48b6d2e06189276cc @TonghuiMing @Jianxia @AzizaParveen1 Thanks, David
... View more
11-07-2023
06:20 AM
|
4
|
20
|
10131
|
|
POST
|
I did not but thanks the suggestion. I could try, but since the upgrade for the arcgis package at Pro 3.1.3 is from 2.1.0.2 to 2.1.0.3 - and the arcgis api is at 2.2, I think I'll wait for the next Pro release as I'm not doing anything that requires any of the other packages to be upgraded at this time.
... View more
10-27-2023
01:26 PM
|
0
|
0
|
1960
|
|
BLOG
|
Hi - I am not seeing the popup display on the map when selecting features from other widgets, such as Search. Am I missing something or did this functionality not make it into this update? Update - I found it - the setting is on the map widget - thanks! Thanks, David
... View more
10-26-2023
07:53 AM
|
1
|
0
|
2403
|
|
POST
|
Hello - After running a conda update arcgis in my Pro3.1.3 envrionment 2 days ago (10/22/2023), I am suddenly getting an import error for datetime import. In most cases, I'm just using datetime to set up datetime differences to get a script runtime email from the Python IDLE: ##ArcGIS api for starting and stopping services. Run in 3.9.16
#Import system modules
import sys, string, os, arcpy, time, smtplib
from datetime import date, timedelta
from arcpy import env
from arcgis.gis import GIS
# Local variables...
message = ""
current_time = time.asctime()
todaysDate = date.today()
priorYear = str(todaysDate - timedelta(days=547)) #547
starting_time = time.time()
try:
gis = GIS("https://sub.domian.net/portal", "myuser_", "mypwd")
gis_servers = gis.admin.servers.list()
print(gis_servers)
#message = message + "\n" + str(gis_servers)
agsfed = gis_servers[1]
print(agsfed)
#message = message + "\n" + str(agsfed)
scpaServicesList = agsfed.services.list(folder='ScpaServices')
for scpaService in scpaServicesList:
print(scpaService.properties.serviceName)
message = message + "\n" + str(scpaService.properties.serviceName)
scpaService.start()
print(scpaService.status)
message = message + "\n" + str(scpaService.status)
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" + e.message
# Below is to send email message.
fromAddr = "[email protected]"
toAddr = ["[email protected]"]
subject = "SCRIPT: Start Collector Services"
finish_time = time.asctime()
fininshing_time = time.time()
elapsed_time = fininshing_time - starting_time
total_time = str(timedelta(seconds=elapsed_time))
msgBody = current_time + "\n\n" + message + "\n\n" + "Thank you." + "\n\n" + finish_time + "\n\n" + "Total time elasped is: " + total_time
msg = 'From: {}\nTo: {}\nSubject: {}\n\n{}'.format(fromAddr, toAddr, subject, msgBody)
server = smtplib.SMTP("smtp.domain.net")
server.set_debuglevel(1)
server.sendmail(fromAddr,toAddr,msg)
server.quit() And then I get the ImportError: PyCapsule_Import could not import module "datetime". So really just seems to be a bad conda udpdate. When I reverted back to the Default environment, I do not get the import error. Is anyone else experiencing this? @KenBuja ? Thanks, David
... View more
10-24-2023
07:30 AM
|
0
|
2
|
2019
|
|
POST
|
Hello - I've noticed recently that the the postgres.exe processes are not releasing in Portal at the current 11.1 relesae. That is, I have a counter set in Monitor that shows the process counts only increasing: Here, the graph shows for the week, the datastore (gis7) postgres counts increase and decrease as the day progresses and layers are accessed and released. But for the portal (gis5) postgres counts, those only increase until we either restart the portal service or restart the server. I feel like before a 2-3 months ago, the postgres.exe processes would release, same as they do in the relational datastore. Is anyone else noticing this behavior? Thanks, David
... View more
10-19-2023
10:26 AM
|
0
|
1
|
1362
|
|
POST
|
Have you tried using the python api to start the services? From time to time, some of my hosted feature services or vector tile services will 'stop' I restart them using the python api. Something like: try:
gis = GIS("https://yourdomain.net/portal", "your_portal_login", "your_portal_pw")
gis_servers = gis.admin.servers.list()
print(gis_servers)
#message = message + "\n" + str(gis_servers)
agshost = gis_servers[0]
print(agshost)
#message = message + "\n" + str(agshost)
vtServicesList = agshost.services.list(folder='Hosted')
for vtService in vtServicesList:
serviceName = vtService.properties.serviceName
if (serviceName == 'ExoticInvasiveSpeciesPoint' or serviceName == 'ExoticInvasiveTreatment'):
print(serviceName)
message = message + "\n" + str(serviceName)
vtService.start()
print(vtService.status)
message = "\n" + message + "\n" + str(vtService.status)
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) works for me every time I encounter a stopped hosted service. Hope this helps
... View more
09-22-2023
11:18 AM
|
0
|
0
|
1581
|
|
POST
|
I was able to update the hosting site 'server' web adaptor after stopping the web application pools same as @RyanUthoff and @SebastienPetit - although I did have to run the patch twice to update the 'server' WA (my federated site and portal updated previously without having to stop their respective pools) I suspect the first time I ran the update following the method tech support told Ryan to do is because the files were still locked, and it just needed a few more minutes to clear. If the 'server' WA still hadn't updated then I would have ran again per @MarceloMarques - but fortunately did not have to
... View more
09-14-2023
06:21 AM
|
1
|
0
|
5248
|
|
IDEA
|
Same here - any updates on this? Does ESRI have any suggestions as to logo dimensions for the Instant apps?
... View more
09-11-2023
01:41 PM
|
0
|
0
|
1685
|
|
POST
|
I'm sorry but this doesn't make sense to me: "The patch does not apply if you have multiple arcgis application pools." Yes, at 11.1 each WA now runs in it's own application pool. So you if you have any kind of Enterprise deploy, you are going to have at least 2 WAs - one for portal, one for the hosting server site. We have 3 - portal, federated site, hosting site plus the original ArcIGISWebApaptorAppPool v4.0 But as I just noted above, the patch updated 2 of the WA's - according to the dll dates - although the patch ran 3 times - once per 11.1 v6 web adaptor. The patch summary notes say nothing about stopping the IIS to run the updates. Is esri now recommending that the patch be re-applied while the IIS is stopped so that the ArcGIS-111-WAI-RU2-Patch.msp patch will update web adaptor pool for 'server'? Such that the ESRI.ArcGIS.WebAdaptor.dll for the 'server' will show as updated? Because 'View Installed Updates' certainly shows that the updates have been applied. @KaitlynStevens ? @JonEmch ?
... View more
09-06-2023
06:36 AM
|
0
|
0
|
4637
|
|
POST
|
We have a distributed site, as I have mentioned earlier in this post For our hosting site, the web adaptor is named 'server' and the ESRI.ArcGIS.WebAdaptor.dll is dated March 1, 2023. For our federate site, the web adaptor is named 'agsfed' and the ESRI.ArcGIS.WebAdaptor.dll is dated August 10, 2023. For the portal WA, the ESRI.ArcGIS.WebAdaptor.dll is dated August 10, 2023. We do not run ANY map and or image and / or server extensions from the hosting site - it purely serves hosted feature layers from portal. All of our map and image and (network, validation, versioning, geolocator) etc services are run through the agsfed WA, per our system design. All 3 WA's, server, agsfed, portal all show the patch as applied through 'installed updates' as accessed through control panel>view installed updates. For IIS, I don't know what multiple bindings means. We only have 80 and 443 showing as bindings on the Default Web Site. There are no bindings on anything else. To me, given what @eryildiz just reported, this suggests that ESRI did not expect anyone to be running traditional types of services from the hosting site. If that's the case, that would seem like an oversite for sure. That being said, ESRI did not expect anyone to have the letters a-d-m-i-n in the name of their federated web adaptor site at 11.0 - like I do 'agsfed' - yet that did happen and I could not run a webgisdr until I upgraded to 11.1. So - now I understand why maybe we 'got lucky'. We are not running anything other than hosted feature layers from the hosting site. All traditional services are accessed from the federated site. And although we have many (250 combined maybe?) traditional map, image, feature access, versioning, geolocator, validation, networking services running through the federated site, that app pool did not freeze before or after patch updates. I should note that wherever possible, all services on agsfed are using the 'shared instance' dynamic mapping service. I have that set to 16 instances, appropriate for an 8 core 32gb server. hope this helps some too - David
... View more
09-01-2023
02:07 PM
|
0
|
0
|
4710
|
|
POST
|
You know, I outlined the specs of our web adaptor machine in this post several months ago. We still have yet to experience any of the issues that the patches address. Nevertheless, I of course have applied these patches. For those that continue to experience "App Pool Freeze" issues, I haven't seen or read any specs on any of the machines that are failing. I only mention this because of 3 items: DMZ - we use F5. For us, our F5 does no load balancing, it merely directs requests. OS - we are still at Windows Server 2016 on the server hosting our web adaptors. One of the components required to run web adaptor at 11.1 is the Web Deploy 3.6 . When you go to this download page, and review the system requirements for the Web Deploy 3.6, you can see that Windows Server 2022 is NOT listed among the supported operating systems: System Requirements Supported Operating Systems Windows XP, Windows 7 Professional, Windows Server 2003 Service Pack 2, Windows Server 2012 R2, Windows Server 2008 R2 SP1, Windows 8 Pro, Windows Server 2012, Windows Vista, Windows 8.1, Windows Server 2016, Windows Server 2019 The supported platform is 64-bit for this download. The .NET 2.0 Framework SP1 or greater must be installed. Does this mean that the Web Deploy 3.6 supported on Windows Server 2022? I don't know - Microsoft nor ESRI say anything about it. NOR does the Microsoft documentation say anything about IIS 10 For others, perhaps they did not follow this item from here: ArcGIS Web Adaptor 11.1 system requirements Caution: If you installed the ASP.NET Core Runtime - Windows Hosting Bundle before enabling IIS and the required components, you must repair the bundle installation using the bundle installer. Also from the system requirements above: Memory - the system requirements dictate that the 'web adaptor' now requires 8Gb minimum: Hardware requirements ArcGIS Web Adaptor (IIS) requires a minimum of 8 GB of memory, with more potentially required depending on the number of ArcGIS Web Adaptor instances installed and the number and size of the requests received. Does this mean 8Gb per Web Adaptor? I don't know. We are running 3 Web Adaptors on a 16Gb Windows 2016 Server with 4 cores, 8 virtual. So according to the hardware requirements, we are under-memory. Yet we run about 20% memory utilization on the server day in and day out: So that's it. I guess I "lucky?" I don't know, but I do know more fine-grained info needs to be provided on this thread.
... View more
08-21-2023
02:12 PM
|
0
|
1
|
3341
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | a week ago | |
| 6 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 4 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|