AWI log Error "Error during XRequest com.uc4.webui.communication.requests.WorkflowMonitorAdapter"
search cancel

AWI log Error "Error during XRequest com.uc4.webui.communication.requests.WorkflowMonitorAdapter"

book

Article ID: 205989

calendar_today

Updated On:

Products

CA Automic Workload Automation - Automation Engine

Issue/Introduction

AWI log Error  "Error during XRequest com.uc4.webui.communication.requests.WorkflowMonitorAdapter"

:

2020-11-05 19:48:54,690 pool-2-thread-148253   [WARN ] AEPROD1:1110/H50C8YA/xxxxxx.COM 68 0000000034016463 +193524 [nitor.GraphicalWorkflowMonitorController] - Failed load monitor for runID 33482640.
java.lang.RuntimeException: com.uc4.ecc.backends.exceptions.AutomationEngineAPIException: Error during XRequest com.uc4.webui.communication.requests.WorkflowMonitorAdapter
...

 

Environment

Release : 12.3.3

Component : AUTOMATION ENGINE

Resolution

The Error in AWI logs most likely related to connectivity (firewall) issues.

2020-11-05 19:48:54,690 pool-2-thread-148253   [WARN ] AEPROD1:1110/H50C8YA/xxxxxxxx.COM 68 0000000034016463 +193524 [nitor.GraphicalWorkflowMonitorController] - Failed load monitor for runID 33482640.
java.lang.RuntimeException: com.uc4.ecc.backends.exceptions.AutomationEngineAPIException: Error during XRequest com.uc4.webui.communication.requests.WorkflowMonitorAdapter
...

Also set session timeout settings. 

In order to implement session timeout, you must update the following 3 files:

Apache Tomcat location\config\web.xml
Here you need to set the session timeout value: (example 5 minutes)
<session-config>
        <session-timeout>5</session-timeout>
    </session-config>
Apache Tomcat location\webapps\awi\config\uc4config.xml
Here you will turn off tcp keepalives
<tcpip_keepalive>0</tcpip_keepalive>
Apache Tomcat location\webapps\awi\config\configuration.properties
Here you will set:
closeIdleSessions=true

Then you must restart Apache Tomcat for these setting to take affect.