Hi there, I have had some trouble debugging my EMA application in the last few days, I am using EMA to contribute data to via TREP to Refinitiv. I had followed all of the tutorials correctly and posted sample contributions which worked fine. And then moved onto creating my own test RICs which I made code to publish data to. All of this worked fine.
As I progressed to writing my final implementation, my code was adding an additional field into the Page header which I was posting. I would expect this to return an error NACK such as the following
AckMsgEnd
>FF
May 13 17:01:12.692 +0100 - Thread [pool-5-thread-1/18]: INFO: ACK/NACK <AckMsg
streamId="1"
domain="MarketPrice Domain"
ackId="0"
nackCode="DeniedBySource"
text="Encoded data length exceeds RWF length Fid Id [340] [Failed to apply update. Cache build failed]"
name="/RIC"
nameType="1"
serviceId="259"
AckMsgEnd
However we were simply not getting back any ACK or NACK at all on these unsuccessful contributions which led us to believe that the application was working correctly.
May 17 17:33:57.378 +0100 - Thread [pool-3-thread-1/23]: INFO: Received update for /TEST/TEST1 of type PageMessage.
May 17 17:33:57.379 +0100 - Thread [pool-3-thread-1/23]: INFO: Publishing page of Image type.
May 17 17:33:57.389 +0100 - Thread [pool-3-thread-1/23]: INFO: Posting update for SERVICE TEST1 type INITIAL
May 17 17:33:57.392 +0100 - Thread [pool-3-thread-1/23]: INFO: Received update for /TEST/TEST1 of type PageMessage.
May 17 17:33:57.392 +0100 - Thread [pool-3-thread-1/23]: INFO: Publishing page of Image type.
May 17 17:33:57.403 +0100 - Thread [pool-3-thread-1/23]: INFO: Posting update for SERVICE /TEST1 type INITIAL
May 17 17:33:57.405 +0100 - Thread [pool-3-thread-1/23]: INFO: Received update for /TEST/TEST1 of type PageMessage.
May 17 17:33:57.406 +0100 - Thread [pool-3-thread-1/23]: INFO: Publishing page of Image type.
The above snippet of code should output any ACK or NACK in between the publishing. We have also done a lot of others test Posts where we occasionally did get the NACK message output (same code). Nothing changed in the code
as you can see it is totally empty sometimes which seems odd to me?
I would like to ask if this is a feature of EMA or a bug that sometimes you get back no ACK message? As our application is built around these messages to confirm or handle errors for contributions to Refinitiv.