Thank you,
we found the problems solution:
topic was published with 5000 millis timeToLive, but  there was a differenc in 
system time of the 2 nodes in the cluster. Therefore the message had a time out 
on this node. Setting timeToLive to 0 resolved the problem.

TopicPublisher publisher = session.createPublisher(topic);
ObjectMessage message = session.createObjectMessage();
message.setObject(obj);
publisher.publish(message, deliveryMode, priority, timeToLive);

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3964088#3964088

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3964088
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to