question

Upvotes
Accepted
9 3 2 6

Setting XmlTraceToStdout programatically

We are not using an EmaConfig.xml. Is there a way to enable XmlTraceToStdout programatically in JAVA?

elektronrefinitiv-realtimeelektron-sdkema-apirrtjava
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
25.1k 57 17 14

Hello @andre.malenfant

You can find an example of how to configure the EMA configurations programmatically in the EMA Java ex421_MP_ProgrammaticCfg example. The example shows how to set the XmlTraceToStdout parameter too.

Map innerMap = EmaFactory.createMap();
Map configMap = EmaFactory.createMap();
ElementList elementList = EmaFactory.createElementList();
ElementList innerElementList = EmaFactory.createElementList();
        
elementList.add(EmaFactory.createElementEntry().ascii("DefaultConsumer", "Consumer_1" ));
...
innerElementList.add(EmaFactory.createElementEntry().intValue( "XmlTraceToStdout", 1 ));
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.