Murex unable to connect to ADS using WelbSocket

Our client is trying to set up Murex to connect to ADS using WebSocket (port 15000). Although they are able to telnet on the port to the ADS, Murex shows an error as attached. murex_14Apr.pngmurex_telnet 14April.pngUpdated Log.zip

Best Answer

  • Gurpreet
    Answer ✓

    Hi @MayurC,

    Their ADS does not support this QoS. Please ask the client to not send the QoS information in the request message, and form it like this:

    {
    "Type": "Request",
    "ID": 3,
    "Domain": "MarketPrice",
    "View": [
    "BID",
    "ASK",
    "HIGH_1",
    "LOW_1",
    "PROD_PERM",
    "RDNDISPLAY",
    "RECORDTYPE"
    ],
    "Key": {
    "Service": "h03tcEDD",
    "Name": "EUR="
    }
    }

Answers

  • @MayurC

    Thanks for reaching out to us.

    I checked the log file and found that the client may use RFA.

    RFA doesn't support WebSocket connections. The client needs to use Refinitiv Real-Time SDKs to support WebSocket connections. Otherwise, you can develop applications with any programming language that supports WebSocket. The client can refer to the examples on GitHub.

    I hope that this information is of help.

  • Hi,

    Murex team confirm they are sending JSON messages and are not using RFA. Attached are more files as reference.

    On 31-April, they did get successful connection (success.txt) to ADS using same properties file but it gave QOS error. Hence, they disabled QO on Murex server after which it did not connect back and always shows the error as attached file (error.txt) .

    Attached is the properties file (rmd-trep-omm) and overall application logs (logs.txt) for reference.

    Kindly share findings.

    24_april_murex.zip


  • @MayurC

    The log shows the java.lang.NullPointerException at the following line.

    java.lang.NullPointerException: null
        at murex.connectivity.rmdtrepomm.core.RmdTrepOmmRfaConfiguration.<init>(RmdTrepOmmRfaConfiguration.java:209) ~[rmd-trep-omm-managed-interface-core-51.1.1.jar:?]
        at murex.connectivity.rmdtrepomm.core.RmdTrepOmmRfaConfiguration.createOverriddenConfig(RmdTrepOmmRfaConfiguration.java:338) ~[rmd-trep-omm-managed-interface-core-51.1.1.jar:?]
        at murex.connectivity.reuters.rfa.component.omm.RfaOmmConnectorManager.getOrCreateConnector(RfaOmmConnectorManager.java:169) ~[rfa-managed-connector-component-51.1.1.jar:?]
        at murex.connectivity.reuters.rfa.component.omm.RfaOmmConnectorManager.getOrCreateConnector(RfaOmmConnectorManager.java:146) ~[rfa-managed-connector-component-51.1.1.jar:?]

    You need to contact the developer who develops this code to investigate this issue.


  • hi,

    Below request received from Murex team while testing via our Websocket API call. Is this something is Refinitv configure/setup on dedicated ADS.

    Hi @Chavan, Mayur

    Is it possible for Refinitiv to set "SupportsQoSRange" for Websocket API service h03tcEDD at server 159.43.84.39 side, to avoid "No multiple qos service supports this QoS." ?

    Because Murex connector is sending :

    {"Type":"Request",

    "Qos":

    {"Dynamic":true,

    "Rate":"TimeConflated",

    "Timeliness":"Realtime"},

    "WorstQos":

    {"Dynamic":true

    ,"Rate":"TimeConflated"

    ,"Timeliness":"Realtime"},

    "ID":3,

    "Domain":"MarketPrice",

    "View":

    ["BID","ASK","HIGH_1","LOW_1","PROD_PERM","RDNDISPLAY","RECORDTYPE"],

    "Key":

    {"Service":"h03tcEDD",

    "Name":"EUR="}}

    but received :

    [
    {
    "ID": 3,
    "Type": "Status",
    "Key": {
    "Service": "h03tcEDD",
    "Name": "EUR="
    },
    "State": {
    "Stream": "Closed",
    "Data": "Suspect",
    "Code": "NoResources",
    "Text": "No multiple qos service supports this QoS."
    }
    }
    ]

    1682675556428.png


  • Murex are now geting the below error while using refinitiv’s websocket tryitnow browser :

    No multiple qos service supports this QoS.

    Pl advice.


    SENT:

    {

    "Type": "Request",

    "Qos": {

    "Dynamic": true,

    "Rate": "TimeConflated",

    "Timeliness": "Realtime"

    },

    "WorstQos": {

    "Dynamic": true,

    "Rate": "TimeConflated",

    "Timeliness": "Realtime"

    },

    "ID": 3,

    "Domain": "MarketPrice",

    "View": [

    "BID",

    "ASK",

    "HIGH_1",

    "LOW_1",

    "PROD_PERM",

    "RDNDISPLAY",

    "RECORDTYPE"

    ],

    "Key": {

    "Service": "h03tcEDD",

    "Name": "EUR="

    }

    }

    RECEIVED:

    [

    {

    "ID": 3,

    "Type": "Status",

    "Key": {

    "Service": "h03tcEDD",

    "Name": "EUR="

    },

    "State": {

    "Stream": "Closed",

    "Data": "Suspect",

    "Code": "NoResources",

    "Text": "No multiple qos service supports this QoS."

    }

    }

    ]

    1682683017325.png