Re: Error when Accessing a public queue

2015-05-19 Thread Jonasty
I solved it by replacing the vm for tcp and dropping the parameter -- View this message in context: http://activemq.2283324.n4.nabble.com/Error-when-Accessing-a-public-queue-tp4696639p4696648.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Error when Accessing a public queue

2015-05-19 Thread Jonasty
*My broker configuration is the following:* queueRouteBuilder.setProcessor(processor); ActiveMQComponent component = new ActiveMQComponent(); component.setBrokerURL("vm://10.254.202.86:61616?broker.persistent=false"); context.addComponent("activemq", component); con

Re: Apache camel monitor activemq

2015-03-26 Thread Jonasty
Thanks for the reply, I will try the mirrored queues. But I'm very new to this so the explanation on the website from activeMQ isn't enough for me. Is it possible to share a tutorial with code somewhere? because I can't find it on google. -- View this message in context: http://activemq.2283324

Re: Apache camel monitor activemq

2015-03-25 Thread Jonasty
Mr Tim Thanks for the advice, I need a message ID so I don't know if option 3 is going to work. I can't turn my queue in a topic so I go for option 2. Can you explain how you can make a camel route to the broker itself? Thanks in advance Jonasty -- View this message in cont

Apache camel monitor activemq

2015-03-25 Thread Jonasty
I have following code: context.addRoutes(new RouteBuilder() { public void configure() throws JMSException { from("activemq:queue:KBC?noop=true").process(new QueueProcessor()); } }); The queueprocessor writes a log to the databa