June 2013
Intermediate to advanced
284 pages
5h 50m
English
The messaging bridge is used to forward JMS messages from one source queue to another target queue.
In this recipe, a bridge will be created to forward the JMS messages from the JMSAppQueue distributed
queue to a hypothetic distributed queue with a JNDI name jms.remotequeue, hosted by a separate WebLogic domain named REMOTE_DOMAIN. The REMOTE_DOMAIN domain is configured with a cluster with two Managed Servers instances running at the addresses t3://remote01.domain.local:9001 and t3://remote02.domain.local:9002. A remote connection factory is available under the JNDI name jms.remoteappcf. Both local and remote queues are distributed destinations.
The Administrative ...