Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Invalid
-
5.14.0
-
None
-
None
Description
I am using REST protocol to create a durable consumer. And according to the online help, a given clientid in a url is to be used always. But when I checked the console, a new clientid is created instead, e.g. ID:TIMK10-56032-1582923785025-3:1. Is this a bug or as designed?
Online help (https://activemq.apache.org/rest)
-----------------
Since 5.2.0 you can use clientId parameter to avoid storing actual JMS consumer in the request session. When using this approach, you don't need to keep sessions alive between requests, you just need to use the same clientId every time.
http://localhost:8161/api/message/test?type=queue&clientId=consumerA
Every such call will use the same JMS consumer and deliver messages send to it by the broker.
-------------------
Thanks.
Tim