Hi there,
I am building an application that uses the Reuters API, and I start the connection to Reuters via
_eikonConnection = new EikonDesktopDataAPI.EikonDesktopDataAPI()
_eikonConnection.OnStatusChanged += OnStatusChanged;
_eikonConnection.Initialize();
This works fine in some cases (i.e. OnStatusChanged is triggered after a few seconds), but it does not always work. The event is never triggered. How can I find out what the problem is?
Thanks in advance