problem with ActiveMQ component

2012-09-01 Thread Sura Monday
Hi All, I have been trying to add a simple activeMQ component to my camel context. Here's my code: String url = "tcp://localhost:61616?broker.persistent=false";         camel.addComponent("jms", activeMQComponent(url));                 /* Create the routes */         camel.addRo

Re: problem with ActiveMQ component

2012-09-02 Thread Sura Monday
onents/camel-jms/src/test/java/org/apache/camel/component/jms/JmsAutoStartupTest.java On Sun, Sep 2, 2012 at 7:02 AM, Sura Monday wrote: > Hi All, > > I have been trying to add a simple activeMQ component to my camel context. > Here's my code: > > String url

Re: problem with ActiveMQ component

2012-09-03 Thread Sura Monday
apparently it turned out to be that maven is loading some unnecessary spring jars, which caused this problem. From: Willem jiang To: users@camel.apache.org; Sura Monday Sent: Monday, September 3, 2012 1:02 PM Subject: Re: problem with ActiveMQ component

how to implement synchronous request only in a custom consumer

2012-09-08 Thread Sura Monday
Hi All, I have implemented a camel consumer to take data from my custom application and send in a camel route. Now I want my custom application to wait until camel notifies that the message has been successfully delivered, and sometime wait until the remote component sends back a response (such

implementing route filter proeprties.

2012-09-11 Thread Sura Monday
Hi All, I am trying to implement a custom end point. An example route looks like this: from("jason:message?illoc_force=tell")       .to("jason:message?sender = mary"); With the properties illoc_force and sender set in the route means that the first end point should pass only me

how to decide the exchagne pattern of the route

2012-09-12 Thread Sura Monday
Hi All, I have an exchange pattern like the one shown below: from("jason:action").inOut("jms:validate);    from("jms:validate").bean(ValidatorBean.class); At my jason end point, if I print out [endpoint].getExchangePattern(), it returns inOnly. Why doesn't getExchangePattern() r

Re: how to decide the exchagne pattern of the route

2012-09-13 Thread Sura Monday
? Also, how can I retrieve the response message at my jason consumer? /Sura From: Claus Ibsen To: users@camel.apache.org Sent: Thursday, September 13, 2012 6:54 PM Subject: Re: how to decide the exchagne pattern of the route On Thu, Sep 13, 2012 at 8:36 AM, Sura

Re: how to include a processor in a route with InOut MEP

2012-09-26 Thread Sura Monday
Hi Christian, It worked!! Many thanks for the quick response:) /Sura From: Christian Müller To: users@camel.apache.org; Sura Monday Sent: Wednesday, September 26, 2012 6:15 PM Subject: Re: how to include a processor in a route with InOut MEP Put the

Re: Getting a node from an XML using camel-cxf

2012-10-02 Thread Sura Monday
I have created a feature request now: https://issues.apache.org/jira/browse/CAMEL-5679 From: Raul Kripalani To: users@camel.apache.org Sent: Wednesday, October 3, 2012 11:06 AM Subject: Re: Getting a node from an XML using camel-cxf I can't think of a Camel