[jboss-user] [JBoss Messaging] - Re: messages working only in one node of cluster

2006-08-11 Thread jaink
Clarification question. Are you using JBoss Messaging or JBoss MQ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3964590#3964590

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3964590
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: messages working only in one node of cluster

2006-08-11 Thread rudih
we're using JBoss MQ with JBoss 3.2.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3964593#3964593

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3964593
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: messages working only in one node of cluster

2006-08-11 Thread mskonda
whom are you asking the question? Me? JBossMessaging. Gone those days with MQ!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3964592#3964592

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3964592
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: messages working only in one node of cluster

2006-08-09 Thread mskonda
As of 1.0.x, JBossMessaging is not clusterable (Clustering isn't implemented 
yet). This is the next task in 1.2

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3964086#3964086

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3964086
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: messages working only in one node of cluster

2006-08-09 Thread rudih
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=bbop=viewtopicp=3964088#3964088

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3964088
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user