Hi,
We are currently designing an app to work with weblogic which in the future should be able to be supported by other app servers (notibly websphere/sunOne and possibly JBoss)
I know that a JMS redelivery delay can be set in weblogic on the JMSConnectionFactory in something similar possible on
Websphere (with and without MQ)
SunOne
JBoss
Many thanks in advance
Bill
-
JMS redelivery delay (2 messages)
- Posted by: Bill Bixby
- Posted on: September 29 2003 05:14 EDT
Threaded Messages (2)
- JMS redelivery delay by ted slusser on October 02 2003 13:53 EDT
- JMS redelivery delay by Christo Angelov on October 03 2003 16:21 EDT
-
JMS redelivery delay[ Go to top ]
- Posted by: ted slusser
- Posted on: October 02 2003 13:53 EDT
- in response to Bill Bixby
What I do is kind of a hack but you could check message.getJMSRedelivered and do a Thread.sleep().
This will effectively throttle only those messages that have failed before and are being resent. -
JMS redelivery delay[ Go to top ]
- Posted by: Christo Angelov
- Posted on: October 03 2003 16:21 EDT
- in response to ted slusser
Where would you do that, in the MDB? But in that case you tie up server resources. WebSphere has a transaction timeout limit and will roll back the delivery and initiate new delivery while your thread is still sleeping.