Re: Designing a Scheduled route in Blueprint

2016-10-06 Thread Matt Sicker
For #1, you could use the quartz, quartz2, or timer components. For #2 and #7, you have both the sql and jdbc components. For the web services, you have the cxf component or the http4 component. On 6 October 2016 at 13:34, sai wrote: > 1) The route is scheduled to run every 30 minutes > 2) Invok

Designing a Scheduled route in Blueprint

2016-10-06 Thread sai
1) The route is scheduled to run every 30 minutes 2) Invokes a stored procedure from DB and gets an id 3) Selects records from another table (could be more than one) from DB. This has a Json message that will be used later to invoke a web service. 4)First Web Service Call:- Invoke a rest web-servic

OData 4.0 support

2016-10-06 Thread M. Ali Khemila
Is anybody aware of any plans for upgrading the olingo2 component to support OData 4.0 in the near future?

Re: Reference to a version "3.0.1" in metrics doc, and classloader leaks

2016-10-06 Thread Claus Ibsen
You can have leaks if you do re-deployment in the same JVM like an app server. You are also welcome to check newer version of DropWizard what APIs it may have or if there is some auto-cleanup or something. On Wed, Oct 5, 2016 at 11:14 AM, KARR, DAVID wrote: > I noticed on http://camel.apache.org

Re: Reference to a version "3.0.1" in metrics doc, and classloader leaks

2016-10-06 Thread Claus Ibsen
Hi Thanks I added the word dropwizard to the version On Wed, Oct 5, 2016 at 11:14 AM, KARR, DAVID wrote: > I noticed on http://camel.apache.org/metrics-component.html the following > text: > > MetricRegistry uses internal thread(s) for reporting. There is no public API > in ve

Re: Camel-Mail - Consume from IMAP with variable searchTerm.fromSentDate

2016-10-06 Thread Claus Ibsen
I think you just need to keep state yourself in the bean, and then the mail component will call the match method to see if a mail messages matches or not. Then your state can then update with new sent date information so the matches method can use a newer date. On Thu, Oct 6, 2016 at 2:43 AM, Mic

Re: Swagger validation with camel-swagger

2016-10-06 Thread Claus Ibsen
Hi So Camel provides a rest-dsl which allows to expose RESTful services in Camel. http://camel.apache.org/rest-dsl When doing this you can also enable swagger api-doc as documentation for your RESTful services. This is only for expose RESTful services inside Camel. If you want to call existing R

Re: Swagger validation with camel-swagger

2016-10-06 Thread idioma
Hi, thanks for your reply. I am not sure what you mean by "the issue has been fixed". Do you mean that the current camel-swagger-java component does not allow swagger validation? Thank you, Ilaria -- View this message in context: http://camel.465427.n5.nabble.com/Swagger-validation-with-came

Camel context ceases to run - JARs coinciding

2016-10-06 Thread ammy.g
Hi Everyone - Need your help on the below scenarios. I have a scenario where I need to create a route to keep listening to messages on weblogic queue ( this requires wlclient.jar ) to keep the route *running as Camel context standalone*. If replace wlclient.jar with wlthint3client.jar, though the

Re: Camel for ETL batch jobs

2016-10-06 Thread Dan Huru
Hi. Same question here though we are using it already for batch inserts. We re thinking of doing joins using an aggregation strategy although some joins are more performant in sql. On 6 Oct 2016 10:20, "Ravindra Godbole" wrote: > Yes. We r using camel routes to process etl batch. > On Sep 29, 20

Re: Swagger validation with camel-swagger

2016-10-06 Thread fabryprog
Hello, this issue been fixed into 2.18.0 that will be releases within few days -- View this message in context: http://camel.465427.n5.nabble.com/Swagger-validation-with-camel-swagger-tp5788403p5788424.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel for ETL batch jobs

2016-10-06 Thread Ravindra Godbole
Yes. We r using camel routes to process etl batch. On Sep 29, 2016 2:10 PM, "contactreji" wrote: > Hi Friends > > Has anyone attempted to write some etl batch jobs using Apache Camel? With > multiple source data joins as stuff? Will it be sane to even attempt it > with > Apache Camel. I know apac