Re: Buffering producer messages

2011-12-01 Thread Joe Carter
Thank you. Much appreciated. On 1 December 2011 18:41, Gary Tully wrote: > That is all good, but don't use static:(failover://) for the network > connector, just use static:(tcp:// ) and the network connector will > handle any failure by restarting the network bridge. > failover: can get in the w

Re: Buffering producer messages

2011-12-01 Thread Gary Tully
That is all good, but don't use static:(failover://) for the network connector, just use static:(tcp:// ) and the network connector will handle any failure by restarting the network bridge. failover: can get in the way of network bridge recovery/restart and leave the network bridge in limbo. It is

Re: Buffering producer messages

2011-12-01 Thread Joe Carter
As I require persistence on the messages, I configured the embedded broker to use the MemoryPersistenceAdapter. This allows me to set the persistent flag which I presume will be carried forward into my remote broker which really will persist the message. My network connector using the following URI

Re: Buffering producer messages

2011-11-30 Thread Gary Tully
the typical activemq way to do that is use an embeded vm broker and a network connector to forward messages to the target when it can. Disable persistence and it will use a memory store so it will be have like a buffer. On 29 November 2011 16:27, Joe Carter wrote: > Hi, > > Does anyone know how t

Buffering producer messages

2011-11-29 Thread Joe Carter
Hi, Does anyone know how to configure the connection factory so that it will buffer messages while there's a temporary outage to the broker? Basically the same as the "Buffered JMS client" in the IBM MQ product http://www-10.lotus.com/ldd/lewiki.nsf/dx/01022009113953AMBJANPR.htm At the moment my a