is it possible to integrate RSearch COM and EikonDesktopDataAPI in the same C# app ?

i'm trying to send RSearch requests while running real time subscription using

ThomsonReuters.Desktop.SDK.DataAccess.

But, when i initialize ThomsonReuters.Desktop.SDK.DataAccess.IDataServices

and then i try to initialize EikonDesktopDataAPI, it returns the error code : EEikonDataAPIInitializeResult.Error_Reinitialize.

So i suppose there is some collision here. What's the work around ?

thanks

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @Telliom

    From my checking, the version of I18nResource.dll (9.50.0.27) used by RSearch COM is newer than the version of I18nResource.dll (9.0.13.726) used by IDataServices.

    The workaround, for now, is initializing RSearch COM before IDataServices. However, the newer version of I18nResource.dll may not work correctly with IDataServices.

    Otherwise, you need to use EikonDesktopDataAPI.CreateAdxRtList() instead to retrieve real-time data.

Answers

  • sorry for the late answer. But it seems that this work around worked just fine
    Thanks !