POST
|
I thought , it was odd that Table only works with Connection String and rest (FC, FC, Raster etc) works with the Connection File. It will be nice, if all works the same way and consistent. I needed it mainly for Unit Testing so I don't have to choose conditional tests where Table is this way and rest of it another way. But it doesn't work the way I had expected so Conn String works for now.
... View more
06-17-2025
07:12 AM
|
1
|
1
|
460
|
POST
|
Thanks @TonyAlmeida . Through testings, I came to the same conclusion that Table does really need connection string to work correct. I swapped my implementation to use connection strings for all of it.
... View more
06-16-2025
10:12 AM
|
0
|
0
|
498
|
POST
|
Hello, Following this guide, https://pro.arcgis.com/en/pro-app/3.3/arcpy/mapping/updatingandfixingdatasources.htm Trying to update the connection properties of multiple files. The new way works for the majority of the datasets (including FCs, Raster, FC with joins in them) except when it has tables. This works fine from one gdb to another gdb but it breaks for TABLES when gdb to sde. aprx = arcpy.mp.ArcGISProject(r'some_aprx_path') aprx.updateConnectionProperties( local_gdb_path, # local gdb file where data currently reside 'sde_connection_file.sde', # SDE connection file auto_update_joins_and_relates=True, validate=True, ignore_case=True ) When I go to table and give a proper connection info (user, pwd, host etc) like below, it works. old = table.connectionProperties.copy() new = { "authentication_mode": "dbms", "database": 'db', "dbclient": "sql", "db_connection_properties": host, # The server "instance": "instance with sde", "server": host, "user": 'usr', "version": "", "password": '****pwd', } table.updateConnectionProperties(old, new) I was hoping all the dataset works the same way and not having to pass the connection info, instead just SDE ConnectionFile. It makes unit tests works better, since updateConnectionProperties from one gdb to another gdb works just file. Now I have to have a different path for the integration with connection string. Thanks.
... View more
06-12-2025
02:01 PM
|
0
|
5
|
599
|
POST
|
This does work for Features, Rasters, Features with Joins but haven't been able to get this to work for Standalone Tables. There must be some other ways to do it.
... View more
06-11-2025
01:19 PM
|
0
|
0
|
156
|
POST
|
@nadja , Are you saying , there will be a future ESRI release that may possibly solve this issue? or you are saying, more kudos to your ideas will make ESRI developers happy and make them expedite it so it will happen sooner? Thanks,
... View more
08-30-2024
08:26 AM
|
0
|
0
|
2769
|
POST
|
Hello, Where can I find a sample Investigation File to test the Knowledge Graph capacity. I have ArcGIS enterprise 11.0 with Knowledge Server capacity and ArcGIS Pro 3.0 to experiment with it? The sample below looks cool. https://www.esri.com/arcgis-blog/products/arcgis-knowledge/analytics/use-a-web-app-to-visualize-a-farm-to-table-supply-chain/ Thanks.
... View more
08-25-2023
12:14 PM
|
1
|
0
|
563
|
POST
|
Thanks @George_Thompson , do I need both (.ECP) and (.PRVC) files or just (.PRVC) will do for Linux ?
... View more
06-05-2023
07:02 AM
|
0
|
0
|
1687
|
POST
|
Good Morning, For windows, we use (.ECP) to license the ArcGIS Server and Portal enterprise software. What file type is required for Linux instance , do I need (.ECP) and (.PRVC) both ? Bases on the documentation here, https://enterprise.arcgis.com/en/server/10.9/install/linux/silently-install-arcgis-server.htm Thank you,
... View more
06-05-2023
06:28 AM
|
0
|
4
|
1698
|
POST
|
Hello, I tested with adding some layers after Print Submit event, and they don't seem to be sent to the Print Job. const printWidget = new Print();
const layer1 = "some dynamic layer";
printWidget.on("submit", function(results){
mapView.add("layer1");
//Can it wait for it to render before sending to Export Map Service ?
await mapview.render();
}); Is there a pre-submit event that can wait for map to load the most recent layer and then sent to a Export Map Service ? Thanks,
... View more
10-10-2022
03:51 PM
|
0
|
0
|
455
|
POST
|
@LaurenBoyd Thank you. We do have a ArcGIS Portal & Server (10X) setup, which I believe you are referring to as ArcGIS Enterprise. The reason behind using ESRI Base maps directly inside our app (ArcGIS Javascript API 4X based) was so we can use external tiles directly into app instead of proxying it through Portal. So in our use case, do we still need a Key to use ESRI hosted Base map? Thanks again for the response and licensing terms.
... View more
08-02-2022
10:54 AM
|
0
|
0
|
3271
|
POST
|
If you are talking about generating ESRI Portal token, you don't need a Python for that. ESRI has a Rest API to do just that. https://developers.arcgis.com/rest/users-groups-and-items/generate-token.htm But if your python script doing more than just generating a token, then consider creating a custom Geoprocessing Tool. Import your python script into the Tool and then publish it to ArcGIS Server. That way it is available to access on the Web and use it. Thanks,
... View more
08-01-2022
10:50 AM
|
1
|
1
|
1235
|
POST
|
Hello, Are ESRI basemaps free to use in terms of following use case? 1. No Portal or ArcGIS Online to pull the basemaps from. Portal is still being used for user authentication. 2. Use basemap tile Url like the one shown in the example below, https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=basemap-custom Do we need an API Key for this use case in order to be compliant with License Terms ? Thanks and Regards, Shailesh Gavathe
... View more
08-01-2022
10:44 AM
|
0
|
2
|
3319
|
POST
|
you can always change the limit by going into layer from 3k to 10k. But that's the max limit and was hoping to have a lot higher limit.
... View more
05-27-2022
07:33 PM
|
0
|
0
|
4763
|
POST
|
Tested it again and major Analysis Tools from Portal works with WFS Layer. Thanks.
... View more
05-26-2022
06:05 AM
|
0
|
0
|
704
|
Title | Kudos | Posted |
---|---|---|
1 | 06-17-2025 07:12 AM | |
1 | 08-25-2023 12:14 PM | |
1 | 06-05-2023 07:19 AM | |
1 | 08-01-2022 10:50 AM | |
1 | 06-04-2015 12:29 PM |
Online Status |
Offline
|
Date Last Visited |
08-26-2025
01:18 PM
|