[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Integrating JBossMQ with a foreign JMS provider

2004-10-07 Thread bhcohen
The " TIBCO Enterprise Message Service Application Integration Guide" section of the Tibco documentation shows how to integrate Tibco EMS with JBoss so you can have MDB's consume messages from a Tibco destination. This isn't quite a 'bridge' though it looks like something like that might be on

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Recovering from external JMS provider failure

2004-09-21 Thread bhcohen
I tried modifying he transaction timeout and set it to 5 seconds. I see the transactons timing out after 5 seconds in the console output. Looking at the console output I see that JBoss detects the failure of the external JMS provider and attempts to reconnect. This only happens once, though no

[JBoss-user] [Messaging, JMS & JBossMQ] - mdb stopDelivery()/startDelivery() exception

2004-09-20 Thread bhcohen
I have an MDB deployed to JBoss 4.0.0RC1 that consumes messages from a foreign (Tibco 4.1) JMS provider. The MDB is deployed with a client id specified in the jboss.xml deployment descriptor. I invoke stopDelivery() and then startDelivery() on the mbean for this MDB. When I invoke startDelivery

[JBoss-user] [Messaging, JMS & JBossMQ] - getJMSCorrelationIDAsBytes()

2004-09-01 Thread bhcohen
We have an small MDB deployed to JBoss 3.2.3. The MDB consumes messages from a external JMS provider queue (Tibco 4.1) The MDB attempts to re-publish the message using JBoss MQ The MDB looks roughly like: public void onMessage(Messasge msgFromTibco){ jbossQueueSender_.send(msgFromTibco); }