Hi,
I tried to deploy the RFA program (Version: 8.0.0.E2.all) to a window server (Java version: 1.8 update 40).
When i started up the program, there was an error message
(the program was working fine in my local PC)
Jun 10, 2016 3:04:39 PM com.reuters.rfa.internal.session.SessionManager acquire
SEVERE: com.reuters.rfa.session
Session initialization: Could not instantiate session "myNamespace::consSession"
: connectionList not defined for Session myNamespace::consSession
Could not acquire session.
Could you provide the reason for the error message, thanks.
The programs to acquire the session are as below.
Context.initialize();
// Create a Session
String sessionName = InfAtsCommandLine.variable("session");
_session = Session.acquire(sessionName);
if (_session == null)
{
System.out.println("Could not acquire session.");
Context.uninitialize();
System.exit(1);
}