-
Any plans for adding support to Single Sign-On (SSO) on the WebViewBrowser control?
Hi, we recently had to stop using Esri's WebViewBrowser control because we needed Single Sign-On (SSO) to be enabled. The property AllowSingleSignOnUsingOSPrimaryAccount of the class CoreWebView2EnvironmentOptions allows enabling SSO, but WebViewBrowser manages the construction and initialization of the WebView2…
-
Open-source Forestry Toolkit for ArcGIS Pro – fieldwork, drone mapping, fire hotspots, and forest analysis
Hi everyone, I’d like to share a small open-source project I’ve been working on called Forestry Toolkit, an ArcGIS Pro add-in built around practical forestry and fieldwork workflows. I originally started it to simplify some of the repetitive GIS tasks I encounter in forestry work, and it gradually grew into a collection of…
-
MapFrame hangs when a layer is added
Hello, I have an add-in that creates a layout and then exports it to a PNG file. The problem is, when I add a layer to the map used to create the MapFrame, it hangs (at this line). I also waited some time to check if it was a performance issue, but after 5-10 minutes nothing happens. oMapframe =…
-
ArcGIS Pro MCP
Dear all, I have released a free, open-source ArcGIS Pro add-in that lets an AI assistant work on the project you have open — style layers, run geoprocessing, query attributes, build layouts — by asking in plain language. "Colour the provinces by area, pastel red through green." "Which are bigger than 15,000 km²? Zoom to…
-
When not to use QueuedTask
I've been developing an add-in where my main workflow is to subscribe to events in ArcGIS Pro and report a summary of important events to our server which drives a dashboard on a web client. A big goal of our add-in is to be minimally intrusive to the user. That idea alongside the need to sometimes be required to use the…
-
How to deal with Nulls in the Geodatabase Tables?
Hi Everyone, I am relatively new to C# and this is a C#/SDK question. I have been switching back and forth between DBNull.Value versus null to identify null values. Can you someone confirm which is the correct one to use for my case? I am performing calculations using the data from a geodatabase table. Each set of values…
-
Main Group “Zoom To Layer” gives incorrect extent when a subgroup contains an empty layer
I have the following layer structure in ArcGIS Pro: Main Group ├── FeatureLayer A ├── FeatureLayer B └── Sub Group ├── FeatureLayer C └── FeatureLayer D (empty) Zoom To Layer works correctly for all individual feature layers and also for the Sub Group. However, when I right-click the Main Group and select Zoom To Layer,…
-
A CoreHost app targeting .NET 10 crashes when working with Pro 3.6 and previous
We have a small CoreHost application targeting .NET 8 that works with Pro 3.4-3.6. To make it also work with Pro 3.7 we changed the .NET target to 10. We expect the new version to work with Pro 3.4-3.7 as .NET supports backward compatibility and Pro 3.7 can load add-ins targeting .NET 6-10. The application (as recommended)…
-
ArcGIS Pro 3.6.1 Local Scene does not refresh imagery after adding/removing an elevation source until zooming
Hello, I found what appears to be a display issue in ArcGIS Pro 3.6.1 Local Scene. Steps to reproduce: * Create a new ArcGIS Pro project. * Add a new Local Scene and remove the default 2D map. * Add an elevation source (DEM) to the Ground surface. * Add an imagery raster layer. * Add or remove the elevation source again.…
-
Edit Operation Not Enabling Undo in ArcGIS Pro
All - I've been trying to find my problem for days and am stuck. The attached snippet has code that updates feature attributes inside an Edit Operation. When executed the updates are applied as expected, but the ArcGIS Pro "Undo" does not become enabled. The crux of the code is below. The code is attached. Any suggestions…
-
ArcGIS Pro Compatibility
We are building an ArcGIS Pro add-in with the ArcGIS Pro SDK. What's a good strategy to support older versions of ArcGIS Pro, especially versions using different .NET runtimes? For example, if we are building our next release with the ArcGIS Pro SDK 3.6, how should we support users running ArcGIS Pro 3.5 and older, or even…
-
Implementing Custom Asynchronous Job Pattern (SubmitJob/Status/Results) in C# SOE using ArcGIS Enterprise SDK
Hello everyone, I am developing a custom Server Object Extension (SOE) using C# and the ArcGIS Enterprise SDK. My extension needs to run heavy, long-running queries and traces against a Utility Network dataset. Because these operations can exceed standard HTTP and Web Adaptor timeouts, a synchronous REST request isn't…
-
SchemaBuilder error with enterprise geodatabase
Hi, I wrote code that adds a field to a feature class using SchemaBuilder. It works correctly with a file geodatabase, but not with an enterprise geodatabase hosted on PostgreSQL. In that case, an error message is returned stating: "The Fields collection contained multiple geometry fields. (st_perimeter(shape)". The error…
-
Get Reference to a "Trace Network" in a Geodatabase
Google Gemini says I should be able to get a reference to a Trace Network using the following code. TraceNetwork traceNetwork = gdb.OpenDataset<TraceNetwork>("MyNetwork"); (see below) I don't see "TraceNetwork" as a valid definition for a geodatabase object when I try this. Am I missing something, or is there another way…
-
Default Version Guard - ArcGIS Pro SDK add-in
The Problem If you edit enterprise, branch-versioned feature service data in ArcGIS Pro, you've probably had that moment of dread wondering whether you just made edits on the Default version instead of a child branch version. Even if you set Default to protected, users with Portal admin & version admin roles have the…
-
ArcGIS Enterprise Patch and QueryFilter issues/changes
Issue has resolved itself.
-
When I programatically select from a FeatureLayer anytime ofter selecting on the map, The application freezes.
I have a class that wraps a FeatueLayer. This is to make sure I can make MCT calls organically from other code. public class FeatureLayerWrapper { FeatureLayerWrapper(FeatureLayer featLayer){ RawfeatureLayer = featLayer; } public FeatureLayer RawfeatureLayer { get; private set;} public async Task<Selection> Select(…
-
Table Name from TOC returned prefaced with a "%"
Hi - I'm just trying to understand what's going on here. I have a stand-alone table from an Oracle database in my TOC named MAXIMO.ZXQSERVPOINT. See below. When, in code, I iterate through the tables present in the TOC the name is returned as "MAXIMO.%ZXQSERVPOINT". See below. What's the deal with the "%" ?? Any info would…
-
Project Open failed in ArcGIS Pro 3.7
Hi, in our Add-In we open a template APRX, which is basically empty project. We do this when Pro is starting in an event OnAppStartupReady and we used the code below. Everything worked fine until we upgraded to ArcGIS Pro 3.7. Now we receive an error message (but not always, sometimes it runs without error): "Project Open…
-
ArcGIS Pro per-user installation ignores ConfigurationName and Configuration Folders Registry Keys
Hello, While testing ArcGIS Pro with a per-user installation, I noticed behavior that appears different from what is documented regarding automatic configuration discovery. According to the SDK documentation, ArcGIS Pro can automatically locate a .proConfigX configuration using the following registry keys: *…
-
DAML shared tab across multiple addins
Hello -- We are currently using the ArcGIS Pro SDK for Pro version 3.5, and had a question about creating a shared tab for use with multiple, independent addins. By way of example, suppose I had two addins, called A and B. They are both mutually exclusive and don't depend on each other. Our end users may have both A and B…
-
Trace Network in the ArcGIS Pro SDK
Hi - I'm looking for examples of how to with with Trace Network features in the Pro SDK. Starting with how to open a Trace Network from a geodatabase. CoPilot says I can do this: var tn = geodatabase.Open<TraceNetwork>("MyTraceNetwork") but, as often seems to be the case, CoPilot appears to have lied to me. Any suggestions…
-
Performance issues with Row.Store() for bulk updates on MSSQL SDE – Can I use direct SQL for attribute-only updates?
Hi everyone, I am currently developing a Console Host application for scheduled data synchronization using the ArcGIS Pro SDK. My environment is an Enterprise Geodatabase on MSSQL Server. I am facing a significant performance bottleneck when using RowCursor and Row.Store() to update approximately 240,000 records.…
-
Flow direction from Utility Network Edge Feature
In the Geometric Network using ArcObjects you can dig in to the details of a network edge and determine its flow direction -- which is useful in a number of circumstances, including if you want to determine the source side and load side of a given electric device (in a radial network). I can't seem to find an equivalent…
-
Enable Direct Parameter Passing to an Esri Task via the ArcGIS Pro SDK
This proposal requests a new method within the ArcGIS Pro SDK for .NET to programmatically open and execute an Esri Task (.esriTask) file while passing in parameters from C# code. Currently, the SDK allows developers to open a task, but provides no mechanism to inject dynamic values into the task's steps. .