Re: Why activeMQ5.10 version cannot be started? Who can help Me!

2014-08-12 Thread Claus Ibsen
Hi Have you seen the documentation. See the starting activemq section at http://activemq.apache.org/version-5-getting-started.html On Tue, Aug 12, 2014 at 11:36 AM, Eric <156468...@qq.com> wrote: > > > >

Re: javax.jms.InvalidClientIDException for durable subscription on broker restart

2014-08-12 Thread Sophia Wright
Hi, I also have a similar requirement where I want to have multiple durable subscribers and publishers in the same client application connecting to the broker.(broker version 5.10) What should be the correct way to configure the above mentioned case? As Anuj mentioned in last update: 1) I use

Re: How to create multiple subscribers and producers in a application

2014-08-12 Thread Sophia Wright
Hi, And how should I use pooledConnection factory. Should I use different pooled ConenctionFactory for each listener and producer or should I use only one pooled connection factory with maxConnection to required number. I can a see a similar thread http://activemq.2283324.n4.nabble.com/javax-j

Re: Producer catch up in large network of brokers

2014-08-12 Thread Noel OConnor
Others would know better but I'd have thought that each remote broker would be seen as and individual client to the central broker and as such would have its own prefetch limit and flow control management. The latency and bandwidth limitations that you mention would also have an impact. As for dis

Re: How to create multiple subscribers and producers in a application

2014-08-12 Thread Noel OConnor
The spring dlmc opens a connection to send a message and then closes the connection. This puts a lot of load on the broker. Using a pooled connection factory gets around this by reusing the connections. On Aug 12, 2014 9:14 PM, "Sophia Wright" wrote: > Hi, > > I want to create 7 producers and 5 d

Producer catch up in large network of brokers

2014-08-12 Thread Kevin McLaughlin
We have a network of brokers: Stomp producers -> 200+ remote brokers -> bridged queue -> 1 central broker -> ~128 Java consumers The central broker is 5.8.0 and the remote brokers are a mix of 5.X. There are latency and throughput differences between the remote brokers and the central broker. S

Re: Why activeMQ5.10 version cannot be started? Who can help Me!

2014-08-12 Thread Eric
-- View this message in context: http://activemq.2283324.n4.nabble.com/Why-activeMQ5-10-version-cannot-be-started-Who-can-help-Me-tp4684435p4684436.html Sent from the ActiveMQ - User mailing list arch

Re: Shared database in master/master mode

2014-08-12 Thread Chainbuck
Actually, there is nothing in place yet. So we can exclude the corruption hypothesis. The problem with store and forward is (to be confirmed): - a port from DMZ to internal zone needs to be open for incoming messages. I was trying to find a way the inside broker would get noticed without having t

Re: active mq web console broker

2014-08-12 Thread Claus Ibsen
Hi The web console WAR has embedded broker. You cannot deploy that web console as WAR and use it to mange another broker. You would need to embed the web console together with your own application. But there is a couple of alternative web consoles that works better. They can both remote connect t

active mq web console broker

2014-08-12 Thread gas
In my application I have an active mq broker, which is configured like this: I downloaded activemq web console war, put it in my tomcat webapps folder. After that activemq-web-console-5.10.0 directory was created. I navigated inside it. In web-inf direc

How to create multiple subscribers and producers in a application

2014-08-12 Thread Sophia Wright
Hi, I want to create 7 producers and 5 durable consumers in my application connecting to the same broker. I want to use spring Default message listener container to create consumers and JMStemplate to create producers. While reading I am confused about how connection factories should be used. I w

Re: javax.jms.InvalidClientIDException for durable subscription on broker restart

2014-08-12 Thread khandelwalanuj
> When using the pool the calls to createConnection will create up to max connections before returning > already existing connections, so if you want a durable subscription on a pooled connection type setup you > must limit it to one connection When I try with maxCOnneciton to "1" and by u