|
POST
|
Hello @RyanTaylor, No, I did not find any solution and I don't think we can do much. Considering the very long time this issue has been logged and not solved, I am rather currently investigating switching to OIDC that now has group membership enabled: https://community.esri.com/t5/arcgis-enterprise-ideas/openid-connect-group-membership/idc-p/1543260 Also, based on my tests, OIDC does not seem to have this issue. Out of curiosity, what technology is your IDP based ? On our side, we are using Keycloak. Thanks
... View more
10-04-2024
01:36 AM
|
0
|
0
|
2969
|
|
POST
|
Running ArcGIS Enterprise 11.3 and start having from time to time this very same failure. Code is using ArcGIS API for Python. Every week, we update our vector tiles basemap using this worfklow. And the same code fails from time to time.
... View more
09-30-2024
01:11 AM
|
0
|
0
|
2986
|
|
IDEA
|
True, it does not seem to be documented yet for ArcGIS Enteprise but it is for ArcGIS Online: https://doc.arcgis.com/en/arcgis-online/administer/openid-connect-logins.htm Step 15: Optionally, toggle the Enable OpenID Connect login based group membership button to allow members to link specified OpenID Connect-based groups to ArcGIS Online groups during the group creation process. This step is missing from ArcGIS Enterprise 11.3 documentation: https://enterprise.arcgis.com/en/portal/latest/administer/windows/openid-connect-logins.htm But running 11.3, I confirm I do see the same option as in ArcGIS Online.
... View more
09-29-2024
04:49 AM
|
0
|
0
|
3706
|
|
POST
|
Hello, I now have been reported 2 cases of users notifying me that they can't see my experiences built with experience builder. Basically, it keeps loading with the loading spinner. I debugged it with them and for each one of them, a different javascript file have been partially put in cache by the service worker. Partially meaning, the file is truncated as a consequence its execution breaks the application. In one case, it was: /apps/experiencebuilder/jimu-core/data-source.js In the other: /apps/experiencebuilder/experience/index.js When debbuging I see the following (200 OK from service worker) : Trying to display the file, it is truncated (check the very bottom of data-source.js) This is very problematic because clearing the cache does not solve the issue. You have to manually unregister the experience builder service worker to fix this issue. Any idea how could this have happened ? By the way, I am running 11.3. Thanks for listening and hopefully helping ! Best regards, Nicolas /cc @CedricDespierreCorporon
... View more
09-17-2024
03:06 AM
|
0
|
1
|
1047
|
|
IDEA
|
Fantastic news @MaggieBusek ! Thanks for listening. Does that mean that it will be available at 11.4 ?
... View more
09-12-2024
08:45 AM
|
0
|
0
|
3810
|
|
POST
|
Hello, I have a derived mosaic dataset referencing various mosaic dataset. I just added a new mosaic dataset into this derived mosaic dataset. I successfully configured "Zorder" attribute so that it gets display the way I want in ArcGIS Pro. In ArcGIS Pro, the display is perfect. Then, I published it on an ArcGIS Server as Image Server but once browsing it on REST API: https://myserver.company.com/arcgis/rest/services/Fonds/FOO_TEST/ImageServer?f=jsapi Mosaic dataset is successfully displayed but not the last mosaic dataset that I added and that should be visible by default. I checked ArcGIS Server manager log and I keep having the following error: Failed to open raster item: [\\myserver\foo\02_RGB.gdb\AMD_ORTHOPHOTO_CAT 139]: I thought at first that the service account running the ArcGIS Server could not access these new mosaic dataset images but it can: logged with this service account, I can successfully display the derived mosaic in ArcGIS Pro like it should. Also, windows permissions wise, everything seems in order. I tried deleting, republishing, various different tests but all of them are failing. I can't find the issue with new mosaic dataset that prevent me from seeing it. Any idea what I might have missed ? Does Failed to open raster item: [\\myserver\foo\02_RGB.gdb\AMD_ORTHOPHOTO_CAT 139] sound familiar to you ? Thanks !
... View more
09-10-2024
05:02 AM
|
0
|
1
|
982
|
|
POST
|
Hi, Since we migrated to 11.3, facing the same issue intermittently. Rerunning webgisdr and it works. But sometimes fails. Need to retry several times. So it's not a permission issue...
... View more
08-26-2024
10:34 PM
|
0
|
0
|
1902
|
|
POST
|
Hi @Felipe, no official news on ESRI side regarding the BUG but in the meantime I upgraded to 11.3 just like you and it went back to 3 minutes without changing a single line of code.
... View more
07-27-2024
12:23 AM
|
1
|
0
|
1572
|
|
POST
|
Hi, Faced the same issue described here: https://community.esri.com/t5/arcgis-enterprise-questions/can-t-install-arcgis-server-11-3-and-arcgis/m-p/1496804 Could you please check if you have anything interesting the installation log: "C:\Program Files\Arcgis\Server\framework\support" ? If you see a Java error that looks like mine, CPU might be the issue. But of course I did not have firewall issues in the event viewer. So it's unlikely you are facing the same issue but mentionning here just in case as the symptom is the same (ie: "Connexion refused" after successfull installation.)
... View more
07-15-2024
02:22 AM
|
0
|
0
|
5642
|
|
POST
|
Did you try pressing "Enter" on the command line ? Sometimes it get stuck...
... View more
07-10-2024
05:12 AM
|
1
|
2
|
2511
|
|
POST
|
For the record, this BUG is fixed at 11.3. We upgraded to 11.3 and no longer face the issue: tileCache datastore does now restore successfully. No patch provided for 11.1 or 11.2 though. Mind your other backup solution !
... View more
07-05-2024
01:12 AM
|
0
|
0
|
7912
|
|
POST
|
Hi @GISFunctionalGroup , We faced the exact same issue. We are running on Windows and all our serveurs have a custom CA certificate deployed on our Windows store. Before (at 11.1) it worked fine. I guess it was retrieving it 'automagically' from Windows store but following the upgrade, we faced the same issue. Don't know if it related to Python version upgrade or to "requests" library upgrade but we fixed it by specifying the path to CA_CERT in 'requests' : requests.post(execute_URL, data, verify=MY_CA_PATH) another solution is have an environement variable 'REQUESTS_CA_BUNDLE' specifying the path on your ArcGIS Server machines but be aware that it will apply to all requests even to the 'official' CA so you would need it add the default store in addition to the custom one. Nicolas
... View more
07-04-2024
07:11 AM
|
0
|
0
|
1439
|
|
POST
|
Thanks for your reply @DenverBilling : much appreciated. Thanks to your reply, IT explained to me that you virtualized environment must be doing some kind of host CPU pass though rather than virtualizing the CPU model to the guest. They made a test a with a passthough of the CPU instead of virtualizing it and it worked. Unfortunately, it is not something they cannot generalize as it would affect operations like migrations, etc... But at least we made some progress... Once again, many thanks !
... View more
07-04-2024
03:34 AM
|
0
|
0
|
3899
|
|
POST
|
Yes, did you not see the console screenshot ? It's broken because watchUtils is gone.
... View more
06-25-2024
07:18 AM
|
0
|
1
|
2740
|
|
POST
|
Hello, After upgrading from 11.1 to 11.3, I noticed that my "Instant apps minimalist" are no longer fonctionnal. I know it's deprecated: https://doc.arcgis.com/en/instant-apps/11.3/create-apps/minimalist.htm But still, supposed to work: And I did not find any mention of it on "Retirements notices": https://enterprise.arcgis.com/en/get-started/latest/windows/what-s-new-in-arcgis-enterprise.htm#ESRI_SECTION1_A7C8187D4F714EDB9C71C5A76D500DBD I believe it's because it's using Maps SDK for Javascript 4.29 and watchUtils is no longer there: Did I miss anything ? Thanks, Best regards, Nicolas
... View more
06-25-2024
05:23 AM
|
1
|
7
|
2797
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 4 | 3 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 4 weeks ago | |
| 1 | 4 weeks ago |