Dynamically changing SQL with INSERT

2016-07-07 Thread jamie3
I am trying to automatically create the SQL query for inserting data into Oracle using SQL component. I have not found much documentation related to this. Any ideas? from("jms:queue:INPUT.Q") .routeId("ens reports log route") .convertBodyTo(String.class)

Apache Camel + Microsoft Azure Service Bus

2016-06-22 Thread jamie3
I am wondering if there is a component for Azure Service Bus. IIRC service bus supports AMQP but I am wondering if there is a native component? -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-Microsoft-Azure-Service-Bus-tp5784320.html Sent from the Camel - User

Re: Apache Camel RedHat Slidedeck?

2016-04-20 Thread jamie3
Thank you very much. -- View this message in context: http://camel.465427.n5.nabble.com/Apache-Camel-RedHat-Slidedeck-tp5781433p5781441.html Sent from the Camel - Users mailing list archive at Nabble.com.

Apache Camel RedHat Slidedeck?

2016-04-20 Thread jamie3
Hi everyone, I am wondering if it is possible to get a copy of the slidedeck from this presentation. https://www.youtube.com/watch?v=91UiQgazt3g Currently I work for a large company who uses expensive proprietary integration solutions. My goal is to showcase open source alternatives to the expen

Re: Shutting down route with jms

2016-02-01 Thread jamie3
A bit of an update. I changed the code to use control bus. The logs show that control bus is signaling to the camel context to shut down, however when inspecting the debug thread, the Camel JMSConsumer class is still running, as shown below with 1 inflight and pending exchange. My processor logic w

Re: Shutting down route with jms

2016-01-30 Thread jamie3
his FAQ > > http://camel.apache.org/how-can-i-stop-a-route-from-a-route.html > > > > On Fri, Jan 29, 2016 at 8:24 PM, jamie3 <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=5777058&i=1>> wrote: > >> I have a Camel route as follows: >

Re: Shutting down route with jms

2016-01-30 Thread jamie3
Thanks Claus, since my original post I tried shutting it down from another thread. I can see 9 out of 10 JMSConsumer threads being shut down. It's only until I shutdown WAS that the message is put back on the Queue. Luckily I have the source code, so I'll do some more digging and report back! -

Shutting down route with jms

2016-01-29 Thread jamie3
I have a Camel route as follows: onException(EmitException.class) .maximumRedeliveries(3) .handled(true) .delay(3000) .process(new ShutdownRoute("Failed to send email")) .end();

Re: Shutting down route with jms

2016-01-29 Thread jamie3
Further investigation it seems the JMS Consumer threads are not being shutdown and the Camel logger is outputting the following: [1/29/16 15:04:59:785 MST] 0039 SystemOut O 2016-01-29 15:04:59 WARN DefaultShutdownStrategy:202 - Timeout occurred. Forcing the routes to be shutdown now. [1/

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-05-15 Thread jamie3
http://beertechcode.blogspot.ca/2015/05/my-first-experiences-with-camel-and-iib9.html -- View this message in context: http://camel.465427.n5.nabble.com/Comparison-of-Apache-Camel-and-IBM-Integration-Bus-v9-0-tp5766171p5767125.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-05-15 Thread jamie3
https://www.blogger.com/blogger.g?blogID=7490556759974154576#editor/target=post;postID=8340010403315101673;onPublishedMenu=allposts;onClosedMenu=allposts;postNum=0;src=postname -- View this message in context: http://camel.465427.n5.nabble.com/Comparison-of-Apache-Camel-and-IBM-Integration-Bus-

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-05-01 Thread jamie3
I absolutely agree. I do mention this in my blog post. And if you read my second post I mentioned I will be discussing things such as Camel + Apache Service Mix and other technologies. Also the point of the blog is really to offer people a comparison between both offerings, even though camel is n

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-04-30 Thread jamie3
Here is the second post in the series. http://beertechcode.blogspot.ca/2015/05/the-3-foot-view-of-apache-camel-and.html -- View this message in context: http://camel.465427.n5.nabble.com/Comparison-of-Apache-Camel-and-IBM-Integration-Bus-v9-0-tp5766171p5766563.html Sent from the Camel - U

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-04-27 Thread jamie3
Haha touche. I will make sure it is fixed. Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/Comparison-of-Apache-Camel-and-IBM-Integration-Bus-v9-0-tp5766171p5766385.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-04-23 Thread jamie3
Sure thing. Once there is enough content we can make arrangements to put it on the camel site. It will take a few months of posts. So far I'm up to about 7000+ words. So I need to spend some time organizing things and figuring out how to make it readable, and not boring. I'll be heading to Hursle

Comparison of Apache Camel and IBM Integration Bus v9.0

2015-04-22 Thread jamie3
Hello everyone. I'm not sure if this is the right area but I will be providing a deep comparison of Apache Camel and Integration Bus v9.0 in a series of upcoming blog posts. Just wanted to share this with the community. http://beertechcode.blogspot.ca/2015/04/a-detailed-and-hopefully-un-biased.htm

Field support for OGNL/simple

2013-08-20 Thread jamie3
The camel documentation for the simple component shows that it doesn't support fields except in 2.11 onwards for the .length in java arrays. Are fields expected to be added in the future? If not can you tell the simple component to provide a custom getter class for the object? For example (psuedo