Exception while calling CreateRData on Dex2.RData

Hello,
I am implementing the 'Dex2Example' example and the code throws an exception while trying to retrieve the data. While I can retrieve data using the form, as soon as trigger the CreateRData as a console application it throws the said exception:
An exception of type 'System.InvalidCastException' occurred in e_webservice.exe but was not handled in user code.
It's not possible to associate an object COM of type 'System.__ComObject' to the interface 'Dex2.IDex2Mgr3'. This operation has failed because the call QueryInterface in the COM component (...) RESULT: 0x80004002 (E_NOINTERFACE)
The excpetion is thrown on the line
MyRData = MyDex2Mgr.CreateRData(MyDex2Cookie);
mydex2cookie value is 1 and the connection status is 'suceeded'.
The MyDex2Mgr initialization is as follows:
public void CreateDex2Mgr()
{
// Create the Dex2 manager
MyDex2Mgr = MyEikonDesktopDataAPI.CreateDex2Mgr();
// Initialize the Dex2 manager and retrieve a session cookie
if (MyDex2Mgr != null)
MyDex2Cookie = (MyDex2Mgr as IDex2Mgr2).Initialize(DEX2_MetadataCaller.DE_MC_ADC_UNKNOWN);
}
Cheers,
Duarte
Answers
-
Hi @duarte_quintelauarte, there are a few things that you should do to make sure that your code will work just fine in the console application:
- make sure that your console app is running in the single-threaded apartment mode, you can add [STAThread] attribute to your static void Main() method;
- since the API is COM, you will need to run the event loop manually, as it is not present in the console apps; the easiest way is to reference the WindowsBase.dll assembly, and add the following routine to your class Program:
#region Dispatcher
public static DispatcherFrame Frame; //the object is required in order to release the Windows message pump while executing asynchronous calls.
public static void PushDispatcherFrame()
{
Dispatcher.PushFrame(GetDispatcherFrame());
}
public static void StopMessagePump()
{
Frame.Continue = false;
Frame = null;
}
public static DispatcherFrame GetDispatcherFrame()
{
return Frame ?? (Frame = new DispatcherFrame());
}
#endregion- after you have done this, you will need to call Program.PushDispatcherFrame() manually every time you execute any calls, and Program.StopMessagePump() when you receive a result;
Let me know if it works.
0 -
Hello @Zhenya_Kovalyov
I've implemented the Dispatcher Frames method and the [STAThread] attribute on the main function.
Now, I've got another error on
MyDex2Cookie = (MyDex2Mgr as IDex2Mgr2).Initialize(DEX2_MetadataCaller.DE_MC_ADC_UNKNOWN);
The exception is as follows:
An unhandled exception of type 'System.Runtime.InteropServices.COMException' in eikon.exe
Class not registered (Exception from HRESULT: 0x80040154
(REGDB_E_CLASSNOTREGI have the following dll's referenced in my project:
- Interop.Dex2
- Interop.EikonDesktopDataAPI
Thank you for your time,
Duarte
0 -
It still looks as if you are activating and using the object in different threads. Could you drop me an email at evgenij.kovalev@tr.com and we can have a look at your code together.
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 687 Datastream
- 1.4K DSS
- 622 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 254 ETA
- 557 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 276 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 671 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 193 TREP Infrastructure
- 229 TRKD
- 918 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 90 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 48 中文论坛