[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-07-05 Thread jorgemoralespou_2
Where can I download this release? We are experiencing similar issues, and want to try the fix. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4060924#4060924 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4060924

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-07-05 Thread timfox
The release should be out in a few days. In the mean-time you could try the code from TRUNK but beware it's not stable. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4061054#4061054 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-29 Thread jpansier
Thanks a lot Tim. Joel View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4059025#4059025 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4059025 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-28 Thread timfox
I have verified with the exact test program posted before applying the fix and I can confirm that scheduled delivery did work as expect if the sending session was non transactional, but did not work if the sending session was transactional. I have applied the fix, and can confirm it now works

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-25 Thread fbastos1
I try to send a jms message outside transaction, creating a session with transaction attribute = false and acknowlegement mode to AUTO_ACKNOWLEDGE but the result is identic Fab View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057285#4057285 Reply to the

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-25 Thread timfox
In any case, someone will invetsigate this shortly... bogged down on other things right now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057319#4057319 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4057319

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-25 Thread timfox
Are you sure? That is what our tests do. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057318#4057318 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4057318 ___ jboss-user mailing

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-25 Thread fbastos1
yes, the junit test in post by joel doesn't work with the transaction attribute = false and acknowledgement mode = Session.AUTO_ACKNOWLEDGE Fab View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057358#4057358 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-22 Thread fbastos1
Hi, I have the same problem, I wonder if it's a bug ? Fab View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056798#4056798 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4056798 ___

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-22 Thread timfox
Looking at the code I can see an issue. To verify, can you try sending your scheduled message *outside* a transaction. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056800#4056800 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-22 Thread timfox
http://jira.jboss.com/jira/browse/JBMESSAGING-1001 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4056820#4056820 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4056820 ___

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-19 Thread timfox
Can you please post your code, or an example that fails? In the mean time, please take a look at org.jboss.test.messaging.jms.ScheduledDeliveryTest to see scheduled delivery in action. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4055524#4055524 Reply to

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-19 Thread jpansier
Indeed, I have look the unit test org.jboss.test.messaging.jms.ScheduledDeliveryTest. my code : | @Stateless | @Clustered(partition=MyPartition) | @RemoteBinding(jndiBinding=JMSManagerBean/remote) | @TransactionManagement(value=TransactionManagementType.BEAN) | public class

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-19 Thread timfox
Please can you post a full runnable example showing messages being sent and consumed earlier than they should be. Something we can copy and paste and run. A JUnitTest would be ideal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4055534#4055534 Reply to the

[jboss-user] [JBoss Messaging] - Re: Scheduled messages not delayed

2007-06-19 Thread jpansier
When I send a jms schedule message (without consumer), it doesn't appear in jboss jmx-console scheduleMessageCount. But if I restart jboss server, this message appear correctly in jboss jmx-console scheduleMessageCount and I don't consume this. The junit test : | | import java.util.Date;