Re: Spring AMQP Apache Camel Component Released

2014-02-18 Thread muthukumara...@gmail.com
Thank you deckerego. I agree some thing is wrong. I will try to dig more into this and get back to you with my findings. Thanks, Muthu -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5747486.html Sent from the Camel - U

Re: Spring AMQP Apache Camel Component Released

2014-02-17 Thread deckerego
It appears the NPEs are due to a response not being made, either because a) a timeout occurred, b) delivery to the wrong queue or c) a null was actually sent as the endpoint's response. I have a patch now committed to master to resolve the NPE, however it just handles the null in a more sensical w

Re: Spring AMQP Apache Camel Component Released

2014-02-17 Thread muthukumara...@gmail.com
@deckerego I tried to set the reply-timeout as mentioned by "VitorCardoso", but still got the NEP exceptions. -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5747449.html Sent from the Camel - Users mailing list archive a

Re: Spring AMQP Apache Camel Component Released

2014-02-17 Thread muthukumara...@gmail.com
Thank you Claus Ibsen for sharing the link. I used the endpoint approach to fix this issue. -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5747448.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Spring AMQP Apache Camel Component Released

2014-02-16 Thread deckerego
This issue does appear to be fairly widespread and is documented as Issue #31 in GitHub. If you could, could you verify that VitorCardoso's work-around works? It's posted at https://github.com/Bluelock/camel-spring-amqp/issues/31#issueco

Re: Spring AMQP Apache Camel Component Released

2014-02-15 Thread Claus Ibsen
On Sat, Feb 15, 2014 at 10:30 PM, muthukumara...@gmail.com wrote: > Hi, > > I am trying to externalize the queue and the topic name to a property file > and tried to give the variables in the URI like > > uri="spring-amqp:${topicname}:${rname}:${queuename}?type=topic&autodelet

Re: Spring AMQP Apache Camel Component Released

2014-02-15 Thread muthukumara...@gmail.com
Yes, It using spring config and it just take it as a literal instead of the value from the property file. -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5747359.html Sent from the Camel - Users mailing list archive at Na

Re: Spring AMQP Apache Camel Component Released

2014-02-15 Thread deckerego
Is thus using the Java DSL or a Spring config? -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5747358.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Spring AMQP Apache Camel Component Released

2014-02-15 Thread muthukumara...@gmail.com
Hi, I am trying to externalize the queue and the topic name to a property file and tried to give the variables in the URI like This doesn't seems to work. Any idea? Thanks, Muthu -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Ca

Re: Spring AMQP Apache Camel Component Released

2014-01-08 Thread deckerego
Thanks for following up. I'm hoping to have this and one other bug fixed & committed prior to February. I appreciate you submitting the route and the steps to reproduce! -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5745

Re: Spring AMQP Apache Camel Component Released

2014-01-08 Thread muthukumara...@gmail.com
Hi, Just wanted to check with you and see if you were able to re-produce this issue. Let me know if you either need more information or if you want me to try some thing out. Thanks, Muthu -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Rel

Re: Spring AMQP Apache Camel Component Released

2013-12-06 Thread muthukumara...@gmail.com
Here is my routing / http://camel.apache.org/schema/spring";> ${headers.apmtype} == 'schedule'

Re: Spring AMQP Apache Camel Component Released

2013-12-06 Thread deckerego
Odd... I'll take a look. Would you be able to send along your entire URI string? -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Component-Released-tp5027785p5744408.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Spring AMQP Apache Camel Component Released

2013-12-05 Thread muthukumara...@gmail.com
Hi, Thanks for the quick response. Initially I tried my samples with camel-spring-amqp-1.2 but while trying to add "acknowledgeMode=AUTO" I learned that its supported only in 1.6.2. After upgrading to 1.6.2 every thing works fine and I can see that the messages are routed fine too, but in the log

Re: Spring AMQP Apache Camel Component Released

2013-12-05 Thread deckerego
The component is in active production use with several companies right now. One caveat is that acknowledgeMode is by default set to NONE - I think you would want it set to AUTO in most environments. Other than that, I believe it's good to go. -- View this message in context: http://camel.465427

Re: Spring AMQP Apache Camel Component Released

2013-12-04 Thread muthukumara...@gmail.com
Hi, I tried to use your component and it works perfectly fine. I did test it with our minimal testcases and things worked fine. Is this component ready to be used for production use? Thanks, Muthu -- View this message in context: http://camel.465427.n5.nabble.com/Spring-AMQP-Apache-Camel-Com

Re: Spring AMQP Apache Camel Component Released

2011-11-28 Thread deckerego
"Vendor" meaning different implementations of the AMQP spec, both the client libraries as well as the broker. For example, right now the Spring AMQP project only supports RabbitMQ and lists the RabbitMQ client libraries as a dependency. Spring doesn't necessarily implement their own AMQP client lib

Re: Spring AMQP Apache Camel Component Released

2011-11-28 Thread Glen Mazza
Hi, your GitHub intro for this component says: "An Apache Camel Component that will natively communicate with a RabbitMQ broker. This is implemented using Spring's AMQP project, so it should ultimately become vendor-agnostic." I guess you m

Re: Spring AMQP Apache Camel Component Released

2011-11-28 Thread deckerego
Indeed, that is definitely on my list. Right now I've kept things relatively simple as the component enters more exhaustive pre-production testing, but after we've validated the component that's on my hit list of things to do. Prior to the completion of testing I have on the docket to: - Allow spe

Re: Spring AMQP Apache Camel Component Released

2011-11-28 Thread Martin Krasser
Good news, thanks for letting us know. I'll try it as soon as I can. Do you also plan to implement AsyncProcessor on the producer side? Cheers, Martin Am 28.11.11 06:03, schrieb deckerego: For those who might be interested, I've posted a Camel component based on Spring AMQP for those who wish