Re: Store And Forward Request Reply

2008-05-23 Thread ttmdev
The element is mapped to the DiscoveryNetworkConnector class, which extends NetworkConnector. By default, the element represents a unidirectional forwarding bridge. As Rob mentioned in a related posting, to make it bidirectional, you need to set the duplex property to true. A couple of duplex-re

Re: Store And Forward Request Reply

2008-05-22 Thread Rob Davies
A forwarding bridge is a construct of a network connector - see http://activemq.apache.org/networks-of-brokers.html So from your local broker - add a network connector with the duplex property = true - to the remote broker - that's all you need to do. cheers, Rob http://open.iona.com/produc

Re: Store And Forward Request Reply

2008-05-22 Thread carloc
Hi Thanks FOr THe Replies, WHat's an example of a forwarding bridge? Is THere Any Example in the Wiki? Is it the JMS to JMS bridge listed in the features section? THanks and Regards Sridhar2008 wrote: > > First off, given the info in your email, I think local broker gives you > isolation fro

Re: Store And Forward Request Reply

2008-05-22 Thread Sridhar2008
First off, given the info in your email, I think local broker gives you isolation from changes to the remote broker (e.g., config changes, unreachable for some time etc) and flexibility in future. Joe: As per the following resolved issue: http://issues.apache.org/activemq/browse/AMQ-920 the Netw

Re: Store And Forward Request Reply

2008-05-22 Thread ttmdev
If you decide to put it on the local broker, make sure the remote broker has a forwarding bridge back to the local broker. Joe Hiram Chirino wrote: > > either one works.. but putting on the local broker is typically > simpler and what is normally done. > > On Thu, May 22, 2008 at 4:06 PM, c

Re: Store And Forward Request Reply

2008-05-22 Thread Hiram Chirino
either one works.. but putting on the local broker is typically simpler and what is normally done. On Thu, May 22, 2008 at 4:06 PM, carloc <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > I would like to implement a request - reply message. > I have two brokers, a local broker and a remote broker.