-
Upgrading to ContributionChannel : PostMsg has not have container type of RSSL_DT_MSG
We have an older API we use for pushing prices to Reuters using the old MarketLink infrastructure and are moving to the ContributionChannel infrastructure. We use the rfanet8.2.1.L2 library When testing the new infrastructure we are getting the error PostMsg has not have container type of RSSL_DT_MSG Using the trace…
-
Contribution while migrating from RFA 7.2
Hi we are migrating our application using RFA7.2 to the strategic APIs, specifically EMA. We were able to test the data collection using EmaFactory and OmmConsumer. Now we are testing contribution. We are using MarketDataContributor in RFA7.2 Can you please point us to documentation? Thanks. ShareShareReply
-
Not able to get updates when submitting post messages through the ommConsumer,
We are migrating from RFA to RTDSK EMA. The migration for consumer is done, and we are able to market data from trep server through ommConsumer. Now that we are moving to the contributor part, we are facing some issues. When we try to submit post messages through the ommConsumer, we are not able to get updates when…
-
Delete record on an interactive source with an OMM off-stream post (websocket)
Hi - how do I delete a specific record using an OMM off-stream post on the ads web socket please? I'm using a type "Update" with an Action "Delete" - I get an Ack back from the ads, but the record doesn't get deleted. How do I remove it from cache please with a post? If i use this "Message": { "ID": 0, "Type": "Status",…
-
Publishing into RSSL services / cacheLocation ssl
Hi - I can send off-stream posts into non-interactive service, or other services where the cacheLocation is srcApp What do i need to enable in the source config on the ADH to enable Off-stream posting into an interactive source app Thanks Martin
-
how to resolve the below issue
When I am trying to publish Data using the postMsg method getting below error Failed to submit PostMsg on item stream. Reason: ReactorReturnCodes.INVALID_USAGE. Error text: Cannot submit PostMsg when stream not in open state. Code snippet using as below OmmConsumer consumer = null; AppClient appClient = new AppClient();…
-
OmmConsumer submit PostMsg error (java EMA 3.7.0)
Hi LSEG support, Try to get consumer to submit PostMsg to an Interactive Provider with: public void onRefreshMsg(RefreshMsg refreshMsg, OmmConsumerEvent event) { PostMsg postMsg = EmaFactory.createPostMsg(); FieldList nestedFieldList = EmaFactory.createFieldList(); nestedFieldList.add(…
-
We are currently contributing realtime data through RCC. Is there any way to contribute or update...
... historical prices? We are currently using an EMA application to Post realtime data to RCC. Are there any FIDs that can be used to update/correct historical prices?
-
Error message for POST requests SEQ-case-create-simple from Low-Code-Platform Appian
Hello everyone, we are currently setting up the test access for the Word Check One API and in Postman every query (POST and GET) works fine. We get problems when we try to set up POST requests via our own system (low code platform Appian). Get Requests work fine. I have already cross-checked the different functions with…
-
Does the WebSocket spec support Packing of Posting Messages for Performance
When receiving messages form the ADS via WebSocket, the ADS packs multiple updates into an array of messages. The format appears to be and array of JSON formatted messages. When posting publishing for performance testing, it would be beneficial to able to pack the post update messages into an array of messages and then…
-
Delete record on non-interactive source with an OMM off-stream post (websocket)
Hi - how do I delete a specific record using an OMM off-stream post on the ads web socket please? I'm using a type "Update" with an Action "Delete" - I get an Ack back from the ads, but the record doesn't get deleted. How do I remove it from cache please with a post? Thanks Martin
-
Attempt to use invalid Handle on submit(PostMsg)
Hi, I am trying to post a message on RTMDS connectivity (no tunnel stream), but the response to the post request is this error message 2023-05-23 10:44:52.704 ERROR 37860 --- [pool-2-thread-1] c.refinitiv.ema.access.OmmConsumerImpl : loggerMsg ClientName: ItemCallbackClient Severity: Error Text: Attempt to use invalid…
-
401 Authorization error only with POST method to World Check API
I can call any GET method on the Refinitiv World Check API and everything is signed and works okay but when I try to POST a Case, I get a 401 error. It works fine from Postman using my key and secret but my C# code doesn't. I have tried replacing the JSON content just with "{}" but it seems to be the authorisation failing…
-
Can I rely on ACK ID from onAckMsg to confirm the processing status of the price publication requ...
...est? I got a question on Refinitiv EMA API call with EMA jar version 3.6.2.2. I would like to confirm if it is safe to assume a price publication request sent to EMA API is accepted and successfully processed when we receive the ACK ID from onAckMsg api? Or that simply means the request has been received by the API…
-
Post / receive Acks on the same channel for ADS websocket in Python
Hi - I can connected to an ads and off-stream post successfully. Im trying to send a lot of data, so i use a while True loop after receiving the login response to listen to a queue and post. However this means that the on_message function is never accessed to receive the Acks to the posts. Do you have any example of how I…