Durable subscribers with a broker cluster

2011-04-14 Thread Teemu Torma
If I have two brokers in a cluster and create a durable subscriber using a failover with both brokers in the url, the client connects randomly to one of them and creates durable subscription in the broker that it connected to and a network subscription in the other one. So far so good. Now, if

Re: SSL Support in CMS?

2007-10-31 Thread Teemu Torma
On Wednesday 31 October 2007, Timothy Bish wrote: > Note that this only works on Unix platforms, not windows. I does work on Windows, but needs openssl for that. Teemu

Re: new documenation for configuring ActiveMQ CPP

2007-03-12 Thread Teemu Torma
On Sunday 11 March 2007 21:51, Nathan Mittler wrote: > The page is for v2.0 which isn't released just yet, but will be very > shortly Any chance of making openwire the default wire format in v2.0? stomp does not support temporary queues/topics and message property formats (the type is lost) a

Re: Java Producer and C++ Consumer

2007-03-03 Thread Teemu Torma
On Saturday 03 March 2007 15:26, [EMAIL PROTECTED] wrote: > cout << "create connection" << endl; > auto_ptr conn(factory->createConnection()); You need to start the connection too, i.e., conn->start (); Teemu

activemq cpp and CMSException

2007-02-05 Thread Teemu Torma
A quick question. Is there a reason why CMSException does not derive from std::exception? Right now it introduces a parallel exception hierarchy which is a bit annoying. Teemu