EMA: RICs do not receive updates as expected.

fatmabetul.yazici
edited March 13 in EMA

I am using Refinitiv EMA in java to subscribe to market data from multiple services(IDN_RDF and BBG,OYAKBANK(a new channel our bank created to combine both)) .

However , I am experiencing an issue where some RICs do not receive updates as expected.

For OYAKBANK rics, onRefreshMsg() never triggers after subscription.onUpdateMsg() does not receive updates for certain RICs.

Other channel successfully triggered.

List<String> rics= Arrays.asList("USDTRY1M","EURTRY1Y","EURTRY3M");for(String ric:rics){    //IDN_RDF    ReqMsg reqMsg= EmaFactory.createReqMsg().serviceName("OYAKBANK").name(ric)                    .interestAfterRefresh(true).initialImage(true);    consumer.registerClient(reqMsg, client);    System.out.println("Subscribed to ric:" +ric  );}

                

Answers

  • Hello @fatmabetul.yazici

    How did you combine both the services?

    The infrastructure will always send a response to a subscribe request. The response may be an image or it may be a status message.

    Please turn on the logging in the EMA SDK to capture the raw request/response messages.

    In your code, you can also use the batch request feature as demonstrated in this example; instead of subscribing to the RIC's individually.

  • A service named OYAKBANK was defined a long time ago. Would it be possible for you to check it? I couldn't find out how it was created. Our business units feed the system with their own defined RIC information, using formula in Excel for their calculations. They use IDN_RDF and BBG RICs while performing calculations in Excel.

    Thanks for your suggestion. I wrote it in batch mode, but I still can't receive the updated data when it changes. I can only get the data after restarting the system.

  • We do not have access to your local MDS. You should reach out to your administrators.

    Do you see the same behaviour with the EMA consumer sample when subscribing to these instruments? What do the log files show?