|
POST
|
Same problem here with ArcGIS Pro 2.8 and Enterprise 10.8.1. Hope it is fixed soon. The workaround with changing the default value > click into other field and back does the trick.
... View more
08-17-2021
12:35 AM
|
0
|
0
|
4062
|
|
POST
|
Hi @JoseBanuelos , thank you for the response! we are using version 4.20. You are right, we have tried the version 4.18 with the "c" key or double click and it works properly. It does not work for 4.19 and 4.20. Is it going to be fixed in 4.21? We cannot go back to 4.18 because we have introduced already the snapping mechanism to the customer.
... View more
08-05-2021
01:39 AM
|
0
|
3
|
6243
|
|
POST
|
Hii, we have a map created with ArcGIS Pro, in which we have activated for all the layers attribute-driven symbology. We followed the steps here and it works perfectly! We want to publish this map as a service, to use it in one of our ArcGIS JavaScript API apps. This service is a map image service with feature access. When we consume the map image service from the JS API, then the symbology properties that depend on attributes are honored and it works perfectly. We don't have the same results in a feature service. So when the users try to edit the data from the web app, they see a default symbol. The quesion is: Should we implement custom renderers for the feature services in order to honor the symbology based on the attribute values? Or are we missing something 😅?
... View more
08-04-2021
09:12 AM
|
2
|
3
|
1725
|
|
POST
|
Hi all, we have noticed a weird behaviour when we use the out-of-the-box editor widget for JavaScript API. We have a multipoint layer. Our users would like to be able to create multipoints with either one single point or multiple points as a geometry for one feature. So we try to create a feature with only 1 point. We followed the following workflow: we start add a new feature, we start creating the geometry, we click once to place a point on the map, we press enter, nothing happens we click to add a second point we press enter workflow progress to attribute values Similar behaviour with double click. We tried to terminate the geometry workflow by double click on the first point and it was not possible. The question is: Is the creation of a single point feature in a multipoint feature layer supported from the editor widget? Or will be supported ;-)?
... View more
08-04-2021
09:03 AM
|
0
|
5
|
6265
|
|
POST
|
Thanks for the reply Rene. I went down the rabbit hole 😃. So apparently Microsoft has a webpack plugin for powerBI customizations here: https://github.com/microsoft/powerbi-visuals-webpack-plugin I combine it with the https://github.com/Esri/arcgis-webpack-plugin. The nice thing is that the arcgis webpack plugin worked, even in this context! I set the esriConfig.assetsPath properly. It almost seemed that it would work. Unfortunately I reached some node heap out of memory issues (easy to solve) and some other weird errors and I stopped there. I truly believe that somehow it would work. If I have some extra time in the future, I will try again. After all these, we will go for esri-loader.
... View more
07-09-2021
10:24 AM
|
0
|
0
|
5620
|
|
POST
|
We have the same issue when we develop with ArcGIS JS API ES Modules for custom Microsoft powerBI plugins. We use this tool from Microsoft https://github.com/microsoft/PowerBI-visuals-tools. This tool is a cli to create powerBI plugins based on a template. Microsoft uses webpack to build the powerBI plugin. In their webpack config (webpack version 5), they have this: new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
Buffer: ["buffer", "Buffer"],
process: "process/browser"
}), When we remove line 5: "process: "process/browser", we can build but then we have other CORB issues. Everything is working fine when we use the esri-loader. I will provide further info if we found a solution. Update: Second issue seems related with this https://community.powerbi.com/t5/Developer/Including-External-Assets-in-Custom-Visual-Assets-folder-ArcGIS/m-p/1655065
... View more
07-08-2021
03:12 AM
|
0
|
2
|
5632
|
|
POST
|
We have the same issue in our environment. We suspect that it happened, after temporarily we lost connection to the shared folder for arcgisportal/content. The connection to the folder is back and everything seems fine, when it points to portal A but the issue is reproducible when it redirects to portal B. @JonathanQuinn , is this issue something being investigated? we haven't tried yet to restart of the portal services.
... View more
06-23-2021
03:40 AM
|
0
|
2
|
5570
|
|
POST
|
Hi Benjamin, for us yes, it was necessary to use a different value. The privatePortalURL has to point to the 7443 port and not to the port 443. Issues appeared when we federated an arcgis server. We didn't observe any issues without a federated arcgis server. We needed to federate an arcgis server so we used for WebContextURL e.g. https://gis.portal.com/arcgis that redirects to port 443 for each of the machines behind and for privatePortalURL we used e.g. https://gis.portal.com:7443/arcgis that redirects to port 7443 for each of the machines behind. Hope this answer your question!
... View more
06-22-2021
04:39 AM
|
0
|
0
|
4486
|
|
POST
|
Hi George, thanks for the reply! The issue is the following: everything works perfectly if we publish the feature service with a query layer using the schema owner e.g. select id, data from <schema_owner>.<table_name>. It does not work when we publish exactly the same service but the query is e.g. select id, data from <table_name> without the schema owner (we use synonyms) Is this an expected behaviour? Do we need to always include the schema owner in the query?
... View more
06-08-2021
07:40 AM
|
0
|
1
|
3373
|
|
POST
|
Hi all, we are using the same steps as in the technical article above. In the oracle setup we have, we must create the table with one specific username, and then connect to the database with a different username. As a result the owner of the table is another user. Our question is: Is it mandatory to create the table and connect to the database with the same oracle user? If yes, is there any documentation of what are the privileges and grants that the "creator" account needs to have for creating tables for feature classes? Thanks!
... View more
06-08-2021
06:03 AM
|
0
|
3
|
3376
|
|
POST
|
Thanks for the heads up! I will subscribe to the new post.
... View more
06-07-2021
12:48 AM
|
0
|
0
|
2086
|
|
POST
|
We found the issue... we copied the example found here and we discovered that the regex variable patternBundle is wrong. We removed the ending /g, so the variable is not a global one any more. That's it!
... View more
03-30-2021
02:37 AM
|
0
|
0
|
1202
|
|
POST
|
Hi all, in the new JS API version 4.18, we are using the new way to translate custom widgets by using the new decorator in the tsx files e.g. @messageBundle("gis/commonMessages") Most of the times it is working, including multiple JSON files with different names but some times when we destroy the widget and recreate it, it cannot find the loader. In other cases we cannot use this decorator and we need to use the method fetchMessageBundle to get our messages. So we do something like this await intl.fetchMessageBundle("gis/widgetMessages").then((messages: any) => {}) In both use cases, the JSON is accessible from the site, and the JSONloader is correctly loaded, but we receive the error message there is no loader for these messages. We try to debug a bit, and there is a weird behavior with a regex query when it tries to find the loader. The first time it tries to find the loader it returns false, the second it returns true, the third it returns false the fourth true etc etc. We suspect it is a bug, ooor we are doing something wrong 😁. Please let us know about any feedback!
... View more
03-24-2021
07:17 AM
|
0
|
1
|
1262
|
|
POST
|
Hi Nicolas, At the end it was a bug in the portal. We solve it by installing the latest patch here: https://support.esri.com/en/download/7864 Further details about the topic can be found here: https://community.esri.com/t5/arcgis-enterprise-questions/aws-10-8-1-ha-portal-not-restarting/m-p/1033401#M29605 Hope this helps!
... View more
03-20-2021
07:21 AM
|
1
|
1
|
4743
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-27-2023 02:10 AM | |
| 2 | 03-29-2023 05:13 AM | |
| 1 | 02-28-2023 06:51 AM | |
| 1 | 02-27-2023 01:25 AM | |
| 1 | 08-17-2021 03:11 AM |
| Online Status |
Offline
|
| Date Last Visited |
02-28-2024
12:04 AM
|