|
POST
|
I don't have an answer to your second question, maybe someone else does. Regarding your first question, no, custom GP services cannot be published through an Image Server license. Refer to Service Types section on page 8 of arcgis-enterprise-functionality-matrix-current.pdf, specifically footnote 7: The only geoprocessing services that can be served are those that are preconfigured within the server; you cannot add or modify geoprocessing services.
... View more
12-16-2024
06:23 AM
|
2
|
1
|
956
|
|
POST
|
Looking at Portal for ArcGIS 11.3 system requirements—ArcGIS Enterprise | Documentation for ArcGIS Enterprise, there is no mention of .NET components being a requirement. Looking at ArcGIS Server 11.3 system requirements—ArcGIS Enterprise | Documentation for ArcGIS Enterprise, .NET 8 is only required if you are enabling the .NET Extension Support feature.
... View more
12-13-2024
03:05 PM
|
1
|
0
|
957
|
|
IDEA
|
@DuncanHornby, since Esri only supports a few versions in that drop-down list, one would have no idea if a tool was introduced in 3.1, 3.0, 2.9, 2.8, etc.... All someone could tell from the drop-down list is whether it already existed in version 3.2.
... View more
12-13-2024
03:02 PM
|
0
|
0
|
929
|
|
POST
|
Since different versions of products have different versions of requirements, and even different requirements entirely at times, it is best to state the version you are using. Also, ArcGIS Server itself doesn't have any .NET requirements, the .NET Extension Support feature of ArcGIS Server does, but that feature only has to be installed if you are using .NET-based server object extensions (SOEs) and server object interceptors (SOIs).
... View more
12-12-2024
08:31 AM
|
1
|
0
|
1000
|
|
IDEA
|
Given how straightforward writing a simple URL redirect rule is on IIS or Java web servers, I doubt Esri will invest the effort to add this functionality. My organization deploys numerous IIS URL rewrite rules to block access to certain functionalities on our external web adaptors, e.g., preventing generating a token to access an authenticated service.
... View more
12-10-2024
10:24 AM
|
0
|
0
|
1509
|
|
POST
|
"Enterprise 11.x" covers 5 versions, so making general statements about software requirements should be avoided since requirements can, and have, changed over 2 1/2 years. No version of ArcGIS 11.x requires any version of .NET unless one is using Server Object Extensions (SOEs) and Server Object Interceptors (SOIs) and has installed the .NET Extension Support feature. If that feature is not installed, talking .NET versions is moot. For the .NET Extension Support feature, ArcGIS 11.0, 11.1, and 11.2 depend on .NET 6 while ArcGIS 11.3 and 11.4 depend on .NET 8. Given ArcGIS 11.2 is a short-term support release, and ArcGIS 11.1 enters Extended Support in May 2025, I would not expect Esri to make any big changes to those releases at this point.
... View more
12-10-2024
10:16 AM
|
1
|
0
|
1052
|
|
POST
|
Looking at the documentation, Geometry objects | ArcGIS REST APIs | ArcGIS Developers An open circular arc is represented by the c property. This is defined by an end point and an interior point. { "c": [ [<x>, <y>, <z>, <m>], [<interior_x>, <interior_y>] ]} It appears that the interior point of a circular arc cannot specify a Z or M value, only the end point can. The same behavior with center points and control points exists for elliptic arcs and bezier curves.
... View more
12-09-2024
10:47 AM
|
2
|
0
|
1111
|
|
POST
|
I thought I have stated the following somewhere on Esri Community, but I can't find it right now, so I will excerpt one of my response on GIS StackExchange: arcgis desktop - Calculate Sequential Values based on Boolean field - GIS SE. Looking to the section of the SQL standard that defines the behavior of cursors, ISO/IEC CD 9075-2 Information technology — Database languages — SQL — Part 2: Foundation (SQL/Foundation), it clearly states (at least through SQL:99 that I have seen in person, but I assume the same language exists in later editions): When the ordering of a cursor is not defined by an <order by clause>, the relative position of two rows is implementation-dependent. The importance of that statement can't be emphasized enough. Without including an explicit SQL ORDER BY clause, the user is leaving the order of records returned in a cursor up to the application or database management system. In this specific situation with ArcGIS Pro, Esri does not document how Calculate Field constructs the underlying SQL used to create the cursor. Additionally, many DBMSs explicitly state that no consistent ordering is guaranteed without including a SQL ORDER BY clause. For example, from Microsoft SQL Server SELECT - ORDER BY Clause (Transact-SQL): The order in which rows are returned in a result set are not guaranteed unless an ORDER BY clause is specified. With vendors either not documenting their ordering rules or saying no order is guaranteed without a SQL ORDER BY clause, a user can't know for certain the order ahead of time, and worse, the order may change over time even for the same data set. If one wants or expects a certain order of records, the only way to guarantee it is by using a SQL ORDER BY clause. For file geodatabases, the unspecified order commonly is by ObjectID, but Esri has never stated that is a guarantee so they feel no need to share the internal mechanics of what may change row ordering in a FGDB table.
... View more
12-06-2024
08:06 AM
|
0
|
0
|
1789
|
|
POST
|
Thorough response, nice. (Assuming generative AI didn't do it for you, but then maybe I should be impressed if it did)
... View more
12-06-2024
07:19 AM
|
0
|
1
|
1107
|
|
IDEA
|
@MarkZollinger, I made changes to the idea to focus on adding the information directly to the tool page itself like licensing information. Please change the status of this idea since it isn't offered as now proposed.
... View more
12-05-2024
10:57 AM
|
0
|
0
|
978
|
|
POST
|
This question is primarily for Esri staff. I am interested in understanding why the ArcPy ArcGIS Online/Portal functions are so limited compared to the ArcGISPortal and ArcGISPortalManager classes in the ArcGIS Pro SDK. I assume both ArcPy and ArcGIS Pro SDK are hooking into the same underlying compiled code, so I know more can be done with ArcPy since I can do it with Pro SDK in Python using GitHub - pythonnet/pythonnet: Python for .NET . One specific issue is how SignInToPortal—ArcGIS Pro | Documentation either doesn't work or doesn't work correctly with SAML logins. It is not uncommon in my organization to have users with lots of Portals registered in ArcGIS Pro, many of which are SAML-based logins. When using Pro SDK with GitHub - pythonnet/pythonnet: Python for .NET , a script, script tool, or notebook can simply loop through the Portals and make sure the user is signed into each portal. If the user isn't signed in, a window pops up for them to finish the SAML login process for a given site. import pythonnet
pythonnet.load("coreclr")
import clr
clr.AddReference("ArcGIS.Desktop.Core")
from ArcGIS.Desktop.Core import ArcGISPortalManager
portal_manager = ArcGISPortalManager.Current
for portal in portal_manager.GetPortals():
portal.SignIn() That's it, 3 lines of functional code and some import statement. The native ArcPy equivalent is impossible because SignInToPortal—ArcGIS Pro | Documentation chokes on handling the sign in for SAML logins. Even if the function worked, it forces a change to the active portal, which isn't always desirable, so then you have to go back and reset the active portal.
... View more
12-04-2024
03:00 PM
|
0
|
1
|
805
|
|
POST
|
The ArcPy Geometry constructors do not support true curves of any kind. You will need to use AsShape—ArcGIS Pro | Documentation and feed it an Esri JSON definition based on the syntax from the 'Curve objects' section of Geometry objects | ArcGIS REST APIs | ArcGIS Developers
... View more
12-04-2024
07:43 AM
|
5
|
0
|
1196
|
|
POST
|
Although Esri supports "*" for fields with ArcPy DA cursors, they did so reluctantly, and it is a bad practice. You should always explicitly list the fields in a cursor, then you always know the order regardless of the order of the fields in the table.
... View more
12-04-2024
07:30 AM
|
0
|
0
|
1065
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Monday | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 12-19-2025 06:05 AM | |
| 1 | 12-02-2025 07:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
13 hours ago
|