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
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
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
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);
}