I'm using camel 1.6 with servicemix 3.4.
I've a simple route like this :
from("activemq:queue:IN_QUEUE").to("activemq:queue:IN_BETWEEN_QUEUE").to("bean:resultBean");
So if I send a message to my IN_QUEUE it's routed to my IN_BETWEEN_QUEUE and
also reaches my resultBean. That's what I excpected. The Problem is,
although the message is processed in my resultBean (without Exception) it is
still in my IN_BETWEEN_QUEUE after all.
If I delete the IN_BETWEEN_QUEUE and my route is like this :
from("activemq:queue:IN_QUEUE").to("bean:resultBean");
all is fine. The message is processed in my resultBean and after that
correctly disappears from my IN_QUEUE.
I can't understand that. Can anyone help ?
Markus
--
View this message in context:
http://www.nabble.com/camel-routing---messages-stay-in-queue-tp25222552p25222552.html
Sent from the Camel - Users mailing list archive at Nabble.com.