I'm working on a NIP which needs to publishes on my TREP infrastructure. Here's my need:
Here's what I'm doing currently:
And here’s my test scenario:
Another scenario:
The NIP connects to the first server of its list: ADH1 (which is standby) <= this is another problem…
Am I doing something wrong?
Is there something I should do on my NIP in order to post simultaneously (via RSSL, because I can't use multicat) on both ADH?
(sorry, I posted my question in the "answer"... I'm still new with the forum and I don't see how to edit my question)
I am not sure which TREP API you are using but I assume it is RFA.
If you want RFA to connect to both ADH, you have to use connectionList.
\Sessions\SessionOMMNIProv\connectionList = "Connection_RSSL_NIPROV,Connection_RSSL_NIPROV2" \Connections\Connection_RSSL_NIPROV\connectionType = "RSSL_NIPROV" \Connections\Connection_RSSL_NIPROV\rsslPort = "14003" \Connections\Connection_RSSL_NIPROV\hostName = "192.168.27.30" \Connections\Connection_RSSL_NIPROV2\connectionType = "RSSL_NIPROV" \Connections\Connection_RSSL_NIPROV2\rsslPort = "14003" \Connections\Connection_RSSL_NIPROV2\hostName = "192.168.27.60"
With this configuration, RFA should connect and publish to both ADHs.
Thanks a lot Warat, it's working perfectly fine!
I just had to modify the Reuters example (ommprovnimdi /
LoginClient.java) in order to always call processLogin(true) as it's explained in the code comments:
// If there is more than one Connection, then this could would
// need to be changed to always call processLogin(true) when the
// re is a refresh. In general, if applications wish to use two
// Connections, it is recommended that they use two Sessions. // (...) // if (!_loggedIn)
//{
_loggedIn = true;
_mainApp.processLogin(true);
//}
}