Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
MQ browse/get authorities need to be granted to the user assigned to the Lamaxu channel to use this feature

Table of Contents

Browse / Get all Messages on a Queue

The REST URL for this would be,

...

Code Block
{
      "messages": [
            {
                  "messageBrokerName": "DEMO",
                  "objectName": "LMX.REPLY.Q",
                  "objectType": "MSG_DATA",
                  "entryTime": "14/05/2019 8:23:38 PM",
                  "fields": {
                        "msgString": "Test 1",
                        "correlId": "000000000000000000000000000000000000000000000000",
                        "msgLength": "6",
                        "messageId": "414D512044454D4F20202020202020207A1BF45AD2D15C20",
                        "expiry": "-1",
                        "putDateTime": "Mon, 14 May 2019 20:14:43 PM"
                  }
            },
            {
                  "messageBrokerName": "DEMO",
                  "objectName": "LMX.REPLY.Q",
                  "objectType": "MSG_DATA",
                  "entryTime": "14/05/2019 8:23:38 PM",
                  "fields": {
                        "msgString": "Test 2",
                        "correlId": "000000000000000000000000000000000000000000000000",
                        "msgLength": "6",
                        "messageId": "414D512044454D4F20202020202020207A1BF45AD5D15C20",
                        "expiry": "-1",
                        "putDateTime": "Mon, 14 May 2019 20:14:46 PM"
                  }
            },
            {
                  "messageBrokerName": "DEMO",
                  "objectName": "LMX.REPLY.Q",
                  "objectType": "MSG_DATA",
                  "entryTime": "14/05/2019 8:23:38 PM",
                  "fields": {
                        "msgString": "Test 3",
                        "correlId": "000000000000000000000000000000000000000000000000",
                        "msgLength": "6",
                        "messageId": "414D512044454D4F20202020202020207A1BF45AD8D15C20",
                        "expiry": "-1",
                        "putDateTime": "Mon, 14 May 2019 20:14:49 PM"
                  }
            }
      ]
}

Selecting Messages using MessageId and CorrelId 

You can also filter on messageId and correlId , example, http://localhost:8085/actions/.*/QBROWSE/LMX.REPLY.Q/messageId/414D512044454D4F20202020202020207A1BF45AD21B6F20

...