Hi Team,
Open DACS is not working across rfa v8.2.3 / v8.2.4 jar when run across jre17 (eg. v17.0.9).
The daemon connection is stuck in CONNECTION_PENDING state which results in an endless loop of checking daemon state.
The DacsSubscribeClient given in portal itself is not working and is stuck in the while loop of openDaemonConnection method.
_agent = _system.createAuthorizationAgent(authorizationAgentName,
/*withCompletionEvents*/true);
// Wait for startup daemon connection to complete
while (_agent.daemonConnectionState() == AuthorizationConnection.CONNECTION_PENDING) {
try {
Thread.sleep(1);
}
catch (InterruptedException ie) {
ie.printStackTrace(System.err);
System.exit(1);
}
}
Can you please review and let us know if it's a known issue?
Also, what should be further steps to handle this issue.
Thanks.