ActiveMQ Camel Web Console

2010-08-14 Thread sbutalia
I have created a route in the Camel.xml under activemq/conf http://camel.apache.org/schema/spring";> Its running but i don't see it it in the routes Page under the web console. I don't see how to start/stop the route using the web console.. any hints? -- View this message in cont

RE: EXTERNAL: Re: How do I determine what a consumer is being removed.

2010-08-14 Thread Robillard, Greg L
I am not using camel. What caching level should be used? From: James Strachan [mailto:james.strac...@gmail.com] Are you sure you are setting your caching levels correctly so JMS connections, sessions, producers & consumers are being reused? Eg if you are using camel, use the activemq componen

Some stomp-messages are received with an empty text

2010-08-14 Thread Arjen van der Meijden
Hi List, I have a fairly simple set-up with a single Activemq (currently 5.3.2, but the behavior existed with previous versions). On that AMQ we have a few queue's and topics, where the topics are filled using PHP producers with Stomp and four Java subscribers with the normal openwire protoc

How can I create a "compact" distribution of ActiveMQ

2010-08-14 Thread mjustin
Hello, I wouldl like to bundle a minimal version of ActiveMQ (w. Stomp support) with an application. Maybe the easiest way would be using a Maven POM artifact to retrieve only the required files, and then package my (Java) app with the Maven assembly plugin? Cheers, Michael Justin - Michael

Re: AMQ to Websphere MQ performance

2010-08-14 Thread James Strachan
Sounds like you need to configure the JMS caching levels & wrap your ConnectionFactory in a CachingConnectionFactory http://activemq.apache.org/jmstemplate-gotchas.html On Friday, August 13, 2010, Craig Brumfield wrote: > > I configured a connection from my AMQ to Webspere MQ and can send messag

Re: How do I determine what a consumer is being removed.

2010-08-14 Thread James Strachan
Are you sure you are setting your caching levels correctly so JMS connections, sessions, producers & consumers are being reused? Eg if you are using camel, use the activemq component - not the jms one - then caching is set up correctly for you by default. http://activemq.apache.org/jmstemplate-got

Re: ActiveMQ to Websphere MQ

2010-08-14 Thread James Strachan
If you want to concurrently consume from ActiveMQ (or any JMS) with Camel, just set the concurrentConsumers property on the URI (or configure the component/endpoint). See http://camel.apache.org/jms.html Note that concurrent consumers break order of messages on a queue. To fix this using ActiveMQ