HK stock name in Chinese page are not shown properly

Hi Support
our trading plarform HK stock name in Chinese page are not shown properly. I have reported to Thomsan Reuters Customer support and they cant help us and direct us to this developer portal to log this case. We need help from your urgently
Best Answer
-
Field 1352 or “DSPLY_NMLL” use RMTES (Reuters Multilingual Text
Encoding Standard) string and it can be displayed by converting to UTF-8.For SFC C++ API, you can use RTRUTF8String class which provide a
convenient and efficient way for applications to represent RMTES characters in
UTF-8 format.Here is an example.
void RecordSnapshotClient::processSnapshotSync(RTRSnapshotRecord& record)
{
// Access each field from the record using an iterator
RTRSnapshotRecordIterator iterator = record.iterator();
for (iterator.start(); !iterator.off(); iterator.forth())
{
// Print the name and value of each field
RTRSnapshotField& field = iterator.field();
// If field id = 1352 then use RTRUTF8String
if (field.fid() == 1352)
{
RTRUTF8String utf8(field.to_c(), field.count(), RTRUTF8String::RMTES);
if (!utf8.error())
{
printf("%s %s\n", (const char *)field.name(), utf8.to_c());
}
}
else
{
printf("%s %s\n", (const char *)field.name(), (const char *)field.string());
}
}For SFC Java API, you have to enable RMTES conversion by setting the
setRMTESConversion(boolean conversion) of RTRecord or RTField to true.For EMA C++ API, you can use RmtesBuffer class.
const FieldEntry& fe = fieldList.getEntry();
rmtesBuffer.apply( fe.getRmtes() );
cout << rmtesBuffer.toString() << endl;0
Answers
-
It could be RMTES_STRING. For example, for 2018.HK, the DSPLY_NMLL in RMTES_STRING will look like:
After converting to UTF8, it will display:
Typically, there is an example code in the API developer guide which shows how to convert RMTES to UTF8 or UCS2. The following code is for RFA C++.
RMTESConverter converter;
PartialUpdateReadIterator partialReadIt;
if ( dataBuffer.isPartialUpdates() )
{
partialReadIt.start( dataBuffer.getBuffer() );
while ( !partialReadIt.off() )
{
fieldUpdatedBuf = partialReadIt.value();
offset = partialReadIt.offset();
converter.setBuffer( fieldUpdatedBuf, offset );
partialReadIt.forth();
}
// For update msg display
vector = converter.getAsShortString()
}
else
{
converter.setBuffer( dataBuffer.getBuffer() );
// For refresh msg display
vector = converter.getAsShortString();
}In RFA C++, RMTESConverter is an interface to be used to convert RMTES encoded string into a string of Unicode format.
RMTESConverter::getAsCharString() returns the converted string in UTF8 format and RMTESConverter::getAsShortString() returns the converted string in UCS2 format.
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
- 684 Datastream
- 1.4K DSS
- 615 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
- 249 ETA
- 554 WebSocket API
- 37 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
- 275 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
- 643 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
- 26 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 192 TREP Infrastructure
- 228 TRKD
- 915 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
- 46 中文论坛