-
Bug
-
Resolution: Not a Bug
-
Major
-
None
-
AMQ 7.1.0.GA
-
None
-
-
Workaround Exists
-
When calling JMS API createQueue() only multicast destinations are created in the broker back end. The call to createQueue() should result in a anycast destination to be created.
Also when sending a frame like would result in multicast destination.
"SEND\n" +
"destination:queue/foo\n" +
"\n" +
text +
END_OF_FRAME;
It's possible to add destination-type header to the frame
"SEND\n" +
"destination:queue/foo\n" +
"destination-type:ANYCAST\n" +
"\n" +
text +
END_OF_FRAME;
but that is non standart since there is no destination-type header defined in STOMP protocol.
- is related to
-
ARTEMIS-1905 Loading...