What is the root cause of "Message.isFinal() == true"

Greetings all

For some ric, the code logic of "Message.isFinal() == true" is fulfilled and no data received via RFA.

if (respMsg.isFinal())
{
System.out.println(_className+": Login Response message is final.");
GenericOMMParser.parse(respMsg);
_mainApp.loginFailure();
return;
}

Anyone know what circumstance could lead to this situation? upstream failure?

Thank you very much in advance.

Tagged:

Best Answer

  • @Leon.Hong

    You can find the document of OMMMsg.isFinal() from <RFAJ package>/Docs/refman/rfajava/com/reuters/rfa/omm/OMMMsg.html as the figure shown below:

    image

Answers