Restarting CamelContext and re-resolving endpoint URIs

2016-03-19 Thread Ryan Moquin
Hi, I normally use OSGi with Camel therefore I am able to take advantage of the fact that when a property that is used in an endpoint url, is changed in it's configuration file, the camel context reloads and the endpoint uri is rebuilt with the updated property value. I'm working on a project

Re: Restarting CamelContext and re-resolving endpoint URIs

2016-03-18 Thread Ryan Moquin
Never mind, I just noticed that stopping and restarting is reloading the properties, I must have accidentally changed the wrong property which is why it didn't work, My bad. :) On Fri, Mar 18, 2016 at 9:25 AM Ryan Moquin <fragility...@gmail.com> wrote: > Hi, > > I normally use

Problem with bean method calls and parameter types

2015-11-12 Thread Ryan Moquin
Hi, I'm using Camel 2.16.0 and trying to invoke a bean method using spring xml and having some issues. It seems like any time I try to invoke a bean method with a camel message body, camel tries to pass it as a string to the method (even though the method takes the class as an argument) I'm

Re: Async Requests via REST DSL

2015-07-23 Thread Ryan Moquin
Does this affect only 2.13.0? Just confirming since that's the only version mentioned in the ticket but guessing it affects 2.13.0 and above? On Thu, Jul 23, 2015, 1:58 AM Claus Ibsen claus.ib...@gmail.com wrote: Hi I think we have a ticket about this

Re: https4 2.15.2 not recognizing my httpClientConfigurer endpoint option

2015-06-07 Thread Ryan Moquin
To do this, I just declare a bean like this: bean id=allHostname class=org.apache.http.conn.ssl.AllowAllHostnameVerifier And then use it on the endpoint like this: ?x509HostnameVerifier=allHostname Works without any issues. Ryan On Fri, Jun 5, 2015, 5:48 PM jspyeatt

Re: REST Session Facade for a JMS Queue in Camel

2015-05-30 Thread Ryan Moquin
If you look at the active documentation, you'll find that there is a REST adapter for it. That might help if you are determined to use JMS for this. I haven't implemented the activemq rest adapter with Camel but I'm sure there is a way to do it. Ryan On Sat, May 30, 2015, 2:18 AM dbonnin

High Availability and No Down Time Deployments

2015-05-14 Thread Ryan Moquin
Hi, I had a question I was hoping that someone could help me with, make suggestions or give me an example of how they handle this. I'm currently using Camel running in Karaf and it's working really well. I'm trying to develop a strategy for being able to hot update production environments with

Re: camel-jackson unmarshalling question

2015-04-29 Thread Ryan Moquin
that, so you can configure this on the data format. On Mon, Apr 27, 2015 at 1:05 AM, Ryan Moquin fragility...@gmail.com wrote: Hi, I had a question about unmarshalling a json object to a generic class type, such as something like, MyClassPerson. Due to erasure, Jackson provides a special way

Re: camel-jackson unmarshalling question

2015-04-29 Thread Ryan Moquin
:54 GMT+02:00 Claus Ibsen claus.ib...@gmail.com: Hi No this is not supported today. Though we could maybe add that, so you can configure this on the data format. On Mon, Apr 27, 2015 at 1:05 AM, Ryan Moquin fragility...@gmail.com wrote: Hi, I had a question about unmarshalling

camel-jackson unmarshalling question

2015-04-26 Thread Ryan Moquin
Hi, I had a question about unmarshalling a json object to a generic class type, such as something like, MyClassPerson. Due to erasure, Jackson provides a special way of unmarshalling this type object so that you don't lose the generic type information, like this: MyClassPerson myClass =

Re: camel-blueprint-test issues

2013-03-08 Thread Ryan Moquin
PM, Ryan Moquin fragility...@gmail.com wrote: This fix would be in a snapshot by now right? Just want to make sure I try it against a corrected snapshot. Yeah you can see on the timestamp on the SNAPSHOT JAR being downloaded. Though you can build the source yourself and use that http

Re: camel-test-blueprint mocking

2013-03-04 Thread Ryan Moquin
://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com (http://jnn.javaeye.com/) (Chinese) Twitter: willemjiang Weibo: 姜宁willem On Sunday, March 3, 2013 at 11:38 PM, Ryan Moquin wrote: /I had converted my camel routes from using camel-test

Re: Opposite of split

2013-03-04 Thread Ryan Moquin
This may be a silly question, but maybe adding the streaming() method (I think it goes on the split) might help? It's possible the single load into memory before doing the splitting, is slowing it down. I found this link helpful, in case you haven't seen it:

Re: camel-blueprint-test issues

2013-03-03 Thread Ryan Moquin
This fix would be in a snapshot by now right? Just want to make sure I try it against a corrected snapshot. Ryan On Sat, Mar 2, 2013 at 3:17 PM, Ryan Moquin fragility...@gmail.com wrote: Awesome, was sure I wasn't crazy. :) Happy it's fixed already! Ryan On Feb 28, 2013 3:48 AM, Claus

camel-test-blueprint mocking

2013-03-03 Thread Ryan Moquin
/I had converted my camel routes from using camel-test to camel-test-blueprint. I switched to version 2.10.4 which prevents my camel routes from being executed twice per test as I was seeing with 2.11.0-SNAPSHOT, but I've been having trouble with mocking an endpoint and skipping sending to the

Re: camel-blueprint-test issues

2013-03-02 Thread Ryan Moquin
Awesome, was sure I wasn't crazy. :) Happy it's fixed already! Ryan On Feb 28, 2013 3:48 AM, Claus Ibsen claus.ib...@gmail.com wrote: Hi Well spotted. I have logged a ticket https://issues.apache.org/jira/browse/CAMEL-6111 On Thu, Feb 28, 2013 at 5:32 AM, Ryan Moquin fragility...@gmail.com

camel-blueprint-test issues

2013-02-27 Thread Ryan Moquin
I converted a test that was using the camel-test library to the camel-test-blueprint library and it appears that the route runs at least twice, but at the exact same time. I'm not sure why each route is being created more than once per test. I do see at the beginning of the test it print out