RE: [JBoss-user] Persistence Queue with Message Driven Bean

2001-05-25 Thread Chree Haas
Try sending the message with persistence enabled: sender.send(message, DeliveryMode.PERSISTENT, Message.DEFAULT_PRIORITY, Message.DEFAULT_TIME_TO_LIVE); Chree - Original Message - From: Howard Ginsburg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 25, 2001 8:47 AM

[JBoss-user] MDB and transactions

2001-05-22 Thread Chree Haas
Hey all, I'm having problems sending transacted messages from a MessageDrivenBean. In the attached example program, the client (test.Main) send a mesage to queue/A. MdbA receives the message and sends a second message queue/B which is received by MdbB. If the QueueSession in MdbA is

[JBoss-user] small typo

2001-05-07 Thread Chree Haas
I think I've found a tiny typo in the JMSContainerInvoker plugin. While diagnosing a configuration problem I saw JBoss throw a NullPointerExcpetion. Digging down, it looks like someone said '==' when they meant '!='... (code relative to 2.2.1) ---