I'm using JBoss Messaging 1.4.0.GA on JBoss AS 4.2.1.
I think that the message priority setting on a message will be lost while bridged to the
target provider (remote).
The message priority is set on the producer, where the message will be sent. Same code
works without using the bridge.
...
MessageProducer sender = session.createProducer(queue);
sender.setDeliveryMode(DeliveryMode.PERSISTENT);
sender.setPriority(0);
...
TextMessage message = session.createTextMessage();
...
sender.send(message);
...
Is this a known issue?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4092419#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...