Re: Enricher doesn't work with ActiveMQ

2014-03-25 Thread ak-dak
Hi all, has anyone an idea what can I do to solve my problem? Best Regards -- View this message in context: http://camel.465427.n5.nabble.com/Enricher-doesn-t-work-with-ActiveMQ-tp5748641p5749346.html Sent from the Camel - Users mailing list archive at Nabble.com.

Enricher doesn't work with ActiveMQ

2014-03-11 Thread ak-dak
Hi all, I'am using Camel 2.12.1 and three simple camel routes which are connected by ActiveMQ. In my second route I try to work with the enricher but the route hangs before invoking the enricher route. The enricher works fine if I have hust one camel context, but I want to use the enricher across

Re: ActiveMq-InOut: save exchange body

2013-10-24 Thread ak-dak
Hi Christian, I've tried it, but I got the same time out exception. I'am using Camel 2.10.0 and Spring 3.0.5. Do you have any further suggestions? Best regards -- View this message in context: http://camel.465427.n5.nabble.com/ActiveMq-InOut-save-exchange-body-tp5741975p5742160.html Sent from

Re: ActiveMq-InOut: save exchange body

2013-10-23 Thread ak-dak
Hi, I have a simple example which works as expected: --- *Camel-Routes:* http://camel.apache.org/schema/spring";>

Re: ActiveMq-InOut: save exchange body

2013-10-22 Thread ak-dak
Hi, the enricher is a good component but it seems not to work in asynchronous routes. My routes are connected with each other over ActiveMq and exchange pattern "InOnly". Best regards -- View this message in context: http://camel.465427.n5.nabble.com/ActiveMq-InOut-save-exchange-body-tp57419

ActiveMq-InOut: save exchange body

2013-10-21 Thread ak-dak
Hi all, I have two camel applications which are communicating over ActiveMq which each other. "Application A" is using classes which are not in class path of "Application B". Now I want to call in my camel route of "Application A" a service method of "Application B" without loosing the exchange bo

Re: Communication between Camel and JBoss AS7

2013-06-11 Thread ak-dak
Hi Chris, I assume that you are working with the request/reply pattern. Works it good? Do you have a simple example how you start your request from your camel route? Are you using the Camel-JMS-Component? best regards -- View this message in context: http://camel.465427.n5.nabble.com/Communic

Communication between Camel and JBoss AS7

2013-06-10 Thread ak-dak
Hi all, I want to develop a camel route which processes a xml message. Below a simple route to demonstrate my use case. I want to do all business JPA persist logic by EJB's within a JBoss AS 7. See the methods of "jbossService" within my example. A