Hello, I am trying to retrieve data from Reuters using .NET API in C# development environment.
when i use the code
subscription=realtime.SetupDataSubscription().
...
.OnStatusUpdated(status)
.OnDataUpdated(someMethod)
.CreateAndStart()
My code is receiving status updates from the reuter with OK InstrumentState.
However, when i try to deploy the data updated with someMethod above,
my field for subscription id is null, and thus, someMethod is not deployed due to null datafield.
It seems like IRealtimeUpdateDictionary field is not returning for my code. However, when i run the source code downloaded from the website, or try symbol conversion with my source code, it has no problem receiving data from Reuters Eikon. Why is my current code not receiving any data updates from the reuters while there is no problem on update status?