hi
I am new in Reuters,
I am trying to use your examples,
I started with consumer EMA using c# i what to get value of RIC
and i want to new which fileds i need to put in "NAME"
***I have attached the output of the code.
this is the code :
public class Consumer
{
static void Main()
{
OmmConsumer? consumer = null;
try
{
AppClient appClient = new();
OmmConsumerConfig config = new OmmConsumerConfig().Host("*************:14002").UserName("************");
consumer = new OmmConsumer(config);
consumer.RegisterClient(new RequestMsg().ServiceName("IDN_RDF").Name("?????"), appClient);
Thread.Sleep(60000); // API calls OnRefreshMsg(), OnUpdateMsg() and OnStatusMsg()
}
catch (OmmException excp)
{
Console.WriteLine(excp.Message);
}
finally
{
consumer?.Uninitialize();
}
}
}