Dear Sir,
We are using the RFA to collect FX rate data, and we are given 2 IP addresses (primary server and secondary server).
When we input the primary server IP to the position, it is fine to connect and get the data with below code.
---------------------------------------------------------------------------------------------------------------------------
private static readonly RFA_String Position = new RFA_String(config.AppSettings.Settings["Position"].Value);
...
element.Name = ThomsonReuters.RFA.RDM.Login.ENAME_POSITION;
elementData.SetFromString(Position, DataBuffer.DataBufferEnum.StringAscii);
element.Data = elementData;
elwiter.Bind(element);
---------------------------------------------------------------------------------------------------------------------------
The question is, can we also put the secondary server IP together in the RFA call, so that the two servers can do failover for resilience effect?
Thanks for help.