|
POST
|
Where is the Web API documentation on the below for ArcGIS Workflow Manager Server (service-driven)? REST SOAP JavaScript 4.x (> 4.12) I have already come across https://workflowsample.esri.com/doc/, not clear is this covers the above.
... View more
11-27-2021
01:33 AM
|
0
|
2
|
1967
|
|
POST
|
With the help of Esri technical team got to know that, root cause of this issue is the self-signed certificate (without Subject Alternative Name) of the web server (IIS) where Portal and ArcGIS Server web adaptors were installed. Recreated the self-signed certificate with Subject Alternative Name and bind it to IIS. With this, Workflow Manager connectivity issue from ArcGIS Pro was successfully resolved.
... View more
11-24-2021
07:20 AM
|
1
|
0
|
4726
|
|
POST
|
@JFarmer Initially used ArcGIS Enterprise Builder 10.8.1 for base deployment, later upgraded the deployment using ArcGIS Enterprise Builder 10.9. Both ArcGIS Workflow Manager Server and ArcGIS Workflow Manager Web App were installed on the same machine that of base deployment. ArcGIS Enterprise Builder federated ArcGIS Server using web adaptor only, please refer to the below screenshot. Enabled server roles are: Note: ArcGIS Pro installed on a separate machine, it got access to "Service URL", but no access to "Administration URL" of above screenshot.
... View more
11-12-2021
09:52 PM
|
0
|
0
|
4826
|
|
POST
|
Hi @JFarmer Thank you. After multiple attempts of restarting Portal windows service and the machine itself, was able to create Workflow Item successfully. Now the issue is with connecting to Workflow Item from ArcGIS Pro (version 2.8.3). Under Workflow pane in Pro, able to select Workflow Manager Portal and can see Workflow item. However, after selecting the workflow item and clicking on Connect button, getting an error. Please refer to the below screenshot.
... View more
11-11-2021
06:31 PM
|
0
|
1
|
4839
|
|
POST
|
Tried full reindex already. Restarted Portal windows service couple of times, yet issue persist.
... View more
11-11-2021
07:06 AM
|
0
|
0
|
4471
|
|
POST
|
Unable to remove the orphan items with type null. Any advice on this will be highly appreciated. Thank you. Environment: Portal for ArcGIS 10.9
... View more
11-10-2021
11:26 PM
|
0
|
9
|
4532
|
|
POST
|
Create workflow item process took around 65 sec. before the error occurred. Enclosed the trimmed video on the same. Unable to create regular hosted layer in Portal. Enclosed the screenshot of the error.
... View more
11-10-2021
07:45 PM
|
0
|
0
|
4847
|
|
POST
|
Create Workflow Item is running for sometime and failing with the below error. Error was captured from ArcGIS Server logs. ! @7ljj2046l - Internal server error, for (POST) [/workflow/admin/createWorkflowItem?name=Workflow%20Item%205&token=1vwTx2yA8HsT9PghnM34DYo2qjxnoGKyngpZEep_Zy9QOMrTwuaKOvdY9vIou8Drv0ziA6QHqnLJnZeg2LmH0AZhFqqSZg9dclJq99SrSFeAmqdF_tdSmoJ96YFV3igUtTsoEv-dqlih2xiIkIC0Qpiu2GuPBJ-FP4tg4mrGDX5_Dm2mM1qBfhAq6me5qEslKTsucKqh8kcswQ2GuG5LWvJ-OfKy3PUHJCfU-l45GuiCtiAPek2cnFs33sRvJMfG8JAWzmvFvvEdiw..] -> play.api.UnexpectedException: Unexpected exception[WorkflowDataStoreException: Failed to create schema] at play.api.http.HttpErrorHandlerExceptions$.throwableToUsefulException(HttpErrorHandler.scala:355) Caused by: esri.workflow.exceptions.WorkflowDataStoreException: Failed to create schema at esri.workflow.exceptions.WorkflowDataStoreException$.apply(Exceptions.scala:68) Environment: OS: Windows Server 2012 R2 Standard ArcGIS Workflow Manager 10.9 Patches applied: ArcGIS Workflow Manager 10.9 Patch 1 (Server | Web App) WorkflowManagerServer_10.9_Patch1.msp WMXWebApp_10.9_Patch1.msp
... View more
11-10-2021
06:20 AM
|
0
|
8
|
4894
|
|
POST
|
Hi, I am also facing the same issue. Got any solution to remove the null items from Portal?
... View more
11-08-2021
08:56 PM
|
0
|
0
|
1484
|
|
POST
|
What will happen to the request when a Portal goes down while processing it, in high available environment (2 portals are present)? Will the request fail? Will the request take over by the other portal instance of HA?
... View more
10-27-2021
10:00 PM
|
0
|
1
|
1260
|
|
POST
|
What are the (below) modes supported by 2 portals for high availability? Active - Active (Both the portals will be active and serves the requests) Active - Passive (Only one portal will be active and serves the requests at any given point of time)
... View more
10-27-2021
09:53 PM
|
0
|
4
|
1824
|
|
POST
|
How to use ArcGIS Server 10.9 license in an ArcObjects 10.9 Java application? Tried the below code... EngineInitializer.initializeEngine();
//EngineInitializer.initializeServer(esriProductCode.esriProductCodeServerAdvancedEdition);
AoInitialize aoInit = new AoInitialize();
initializeArcGISLicenses(aoInit);
private static void initializeArcGISLicenses(AoInitialize aoInit) {
try {
if (aoInit.isProductCodeAvailable(esriLicenseProductCode.esriLicenseProductCodeArcServer) == esriLicenseStatus.esriLicenseAvailable)
aoInit.initialize(esriLicenseProductCode.esriLicenseProductCodeArcServer);
else {
System.err.println("Could not initialize an ArcServer License. Exiting application.");
System.exit(-1);
}
} catch (Exception e) {
e.printStackTrace();
}
} Getting an exception at aoInit.initialize(...) Exception in thread "main" java.lang.NoClassDefFoundError: com/amazonaws/AmazonServiceException
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at com.esri.arcgis.interop.extn.RegTool.a(Unknown Source)
at com.esri.arcgis.interop.extn.RegTool.register(Unknown Source)
at com.esri.arcgis.interop.NativeObjRef.nativeVtblInvokeNative(Native Method)
at com.esri.arcgis.interop.NativeObjRef.nativeVtblInvoke(Unknown Source)
at com.esri.arcgis.interop.NativeObjRef.invoke(Unknown Source)
at com.esri.arcgis.interop.Dispatch.vtblInvoke(Unknown Source)
at com.esri.arcgis.system.IAoInitializeProxy.initialize(Unknown Source)
at com.esri.arcgis.system.AoInitialize.initialize(Unknown Source)
at arcgissamples.geodatabase.AccessFileGDB.initializeArcGISLicenses(AccessFileGDB.java:77)
at arcgissamples.geodatabase.AccessFileGDB.main(AccessFileGDB.java:43) Environment: OS: Microsoft Windows Server 2012 R2 Standard JDK/JRE: 1.8.0_301 64-bit ArcObjects JAR: D:\Program Files\ArcGIS\Server\framework\lib\arcobjects.jar (ArcGIS Server 10.9) ArcGIS Enterprise: ArcGIS Server 10.9 was federated with Portal for ArcGIS 10.9 IDE: Eclipse IDE for Enterprise Java and Web Developers. Version: 2021-06 (4.20.0), Build id: 20210612-2011 All the above tools were available in a single machine.
... View more
09-13-2021
11:22 PM
|
0
|
0
|
790
|
|
POST
|
You may refer to the below posts. Hope it helps. https://community.esri.com/t5/arcgis-api-for-javascript-questions/esri-js-api-identitymanager-store-the-oauth-state/m-p/1044549#M72387 https://community.esri.com/t5/arcgis-api-for-javascript-questions/esri-js-api-identitymanager-how-to-use/m-p/1005394#M70933 https://community.esri.com/t5/arcgis-enterprise-questions/single-sign-on-experience-with-saml-on-arcgis/m-p/1005022#M29010
... View more
07-25-2021
09:04 PM
|
0
|
0
|
3147
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-31-2023 08:35 AM | |
| 1 | 10-18-2023 04:43 AM | |
| 1 | 09-30-2020 09:50 PM | |
| 1 | 11-29-2020 12:16 AM | |
| 1 | 03-03-2024 08:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-12-2025
08:26 PM
|