Hi, Dear all:
Here, I need to know the RIC for each update message.
I had referred to asked questions. For Java edition, it was suggested to add respMsg.getAttribInfo().getName().
I tried the following code in the RFA C++ StarterConsumer example,
void StarterConsumer::processMarketPriceResponse(const rfa::sessionLayer ...)
{
string temp_str;
....
temp_str = TRRic.assign(respMsg.getAttribInfo().getName().c_str());
....
}
But I found for the first time to subscribe data, the RIC can be fetched by temp_str, but for the coming update from second time, the temp_str is always null string.
Do you know what's the reason?
Best Regards
Zheng