|
IDEA
|
I think this is for reporting purposes only. I don't think it has the functionality of x-ray
... View more
11-08-2023
09:42 AM
|
0
|
0
|
4350
|
|
IDEA
|
@BradNiemandI opened a case because we were getting no results from ArcGIS Javascript 4.2x but in ArcGIS Pro and Webmaps we were receiving results. Going to the Geocoder Service Rest API, no results as well. We used a composite geolocator. One of the 5 geolocators should have come back with a result regardless of if two out of the 5 had Match with no zones set to No when it should be Yes. These locators were created in ArcGIS Pro 2.9. I'm wondering when this functionality came out because the "Match with no Zones" automatically being set didn't happen. The Composite Geocoder should have skipped that one locator and gone to the rest but it didn't. That's why I placed this in the ArcGIS Ideas page because the Geocoding option didn't actually get set automatically. Support Person Identified BUG-000148113 as a possible issue Esri Case #03473800 Recap: Checked that we do not get results on the single line locator from the REST end of the locator when looking up an address without a zone, same is working on the web map. Compared the requests going for "find address candidates" using developer tools We checked that we were able to get results in ArcGIS Pro as well. Since the locator used was a composite locator, we checked all the individual locators and confirmed the zone inputs and made sure "Match with no zone" is yes. There were two locators for which it was not set as "no. After correcting those, we recreated the composite locator and ensured that the "match to no zones" is set to "yes" We published the locator and added the published locator in portal organization > settings > utility network > geocoding. Confirmed that from the REST endpoint when looking for an address without a zone, we get the correct results. Crosschecked that from the web map as well.
... View more
11-08-2023
06:18 AM
|
0
|
0
|
2249
|
|
IDEA
|
When setting up a geolocator and based on field input mapping, automatically set the 'Match with no zones' option.
... View more
11-07-2023
10:59 AM
|
0
|
2
|
2351
|
|
POST
|
""" Performed some updates for newer versions of Python API in an ArcGIS Pro 3.1.x setting which got rid of the PropertyMap Attribute error. Date: 10-23-2023 """ def find_maps_with_layer(lyr_to_find, map_item_query='1=1'): web_map_items = gis.content.search(query=map_item_query, item_type="Web Map", max_items=10000) print(f"Searching {len(web_map_items)} web maps") maps_with_layer = [] for item in web_map_items: found_it = False wm = WebMap(item) lyrs = wm.layers for lyr in lyrs: if hasattr(lyr, 'url') and lyr.url is not None: if lyr_to_find in lyr.url: found_it = True break if found_it: maps_with_layer.append(item) print(f"Found {len(maps_with_layer)} maps which contain the layer") return maps_with_layer # Parameters: lyr_to_find = 'https://<domainurl>/<webadaptor>/rest/services/<nameoffeatureservice>/FeatureServer' map_item_query = "Title:*" # Get a list of web maps with the layer: maps_with_layer = find_maps_with_layer(lyr_to_find, map_item_query) # Print the titles of web maps containing the layer: for item in maps_with_layer: print(f'Web Map Title: {item.title}')
... View more
10-13-2023
10:40 AM
|
0
|
1
|
1464
|
|
POST
|
.net core requires changes in configuration for resources unlike .net framework. We are experiencing this with our own software so looking at Microsoft's requirements for IIS settings maybe something the esri DEV team should be looking at.
... View more
09-13-2023
02:16 PM
|
2
|
0
|
4229
|
|
POST
|
It would be interesting to understand hardware/resource usage as well as network throughput. Procmon can trail this to see when it breaks. Does anyone have ArcGIS Monitor to trace these instances?
... View more
09-01-2023
08:25 AM
|
0
|
0
|
4686
|
|
POST
|
Haven't had an issue since first patch install on 8 different Enterprise environments. Did you try the workaround? kick up the queues to 100000 to see if that works if the workaround times out eventually. We installed the second patch and still no issues on our end with 3 separate ArcGIS Enterprise environments. Albeit, it's not used as much as the sales production environment as we are still on 10.9.1 in that environment. Everything else is being tested in 11.1.
... View more
08-16-2023
08:40 AM
|
1
|
1
|
3421
|
|
POST
|
I'm totally curious. What's your geometry service max pool set at? At Cityworks, we use both forward and backward lookups for relationships and by adding in extra pools the performance of grabbing related objects reduced from 30 seconds to instant. Change Pool from 2 to 8. I've increased it to 12 because we have 64GB of RAM available for our sales staff. I know related objects are different but I have not noticed any issues since implementing the workaround on 6 different environments. A user posted that document uploads were an issue and we upload documents on demo sites and don't have an issue. When memory leaks and garbage cleanup within code is not handled properly, throwing hardware resources at it can temporarily fix the issue. I'm curious what your geometry service is set at.
... View more
07-20-2023
09:20 AM
|
0
|
1
|
3409
|
|
POST
|
Make sure you have the latest patches and .net core updates. https://dotnet.microsoft.com/en-us/download
... View more
06-29-2023
12:17 PM
|
1
|
2
|
3520
|
|
POST
|
Implement my workaround and it takes seconds...it's valid.
... View more
06-29-2023
11:44 AM
|
0
|
4
|
3540
|
|
POST
|
Awesome @JasonHarris2 . Hope it holds. esri is now testing the configuration on their end. Esri Case #03353671 - ArcGIS Web Adaptor 11.1 App Pool freezes
... View more
05-31-2023
11:35 AM
|
1
|
0
|
4765
|
|
POST
|
Didn't see too much of a hit. Honestly, the server behaved better. And yes, I just updated both based on Microsoft articles about appPool instances for .net core and queue length for multiple requests.
... View more
05-30-2023
02:31 PM
|
1
|
0
|
6564
|
|
POST
|
Fixed it as a workaround. For which config change that solved it, I have no idea but maybe this will help the community.
... View more
05-30-2023
10:41 AM
|
8
|
2
|
6591
|
|
IDEA
|
Currently you can only assign 62 groups to a user. Need to be able to assign unlimited groups to a user. Also, offer a way to share all groups to users.
... View more
03-08-2023
01:06 PM
|
1
|
0
|
496
|
|
POST
|
arcgis.gis module outside_org switch is not honored whether its false or true. Please fix. If there is a workaround, please provide.
... View more
03-01-2023
08:26 AM
|
0
|
0
|
904
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 4 weeks ago | |
| 4 | 04-10-2024 11:35 AM | |
| 2 | 09-13-2023 02:16 PM | |
| 1 | 07-30-2021 08:07 AM | |
| 1 | 08-16-2023 08:40 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|