[ANNOUNCEMENT] Apache Camel-kafka-connector 0.2.0

2020-05-20 Thread Andrea Tarocchi
The Camel community announces the immediate availability of Apache Camel-kafka-connector 0.2.0 The artifacts are published and ready for you to download either from the Apache mirrors or from maven central. For more info please visit the project GitHub repository[1]. Many thanks to all who made t

[ANNOUNCEMENT] Apache Camel-kafka-connector 0.1.0 Released

2020-04-27 Thread Andrea Tarocchi
The Camel community announces the immediate availability of Apache Camel-kafka-connector 0.1.0 The artifacts are published and ready for you to download either from the Apache mirrors or from maven central. For more info please visit the project GitHub repository[1]. Many thanks to all who made t

Re: Guaranteed file processing - JMS and file producer

2016-04-13 Thread Andrea Tarocchi
Hi Glen, do you have a way to make the writing of the file itself idempotent? i.e. you might use a unique id in the file name tush writing it a second time would alter only the timestamp. Is that doable? In this way you can put aside the idempotent repository and overcome your issue. Regards, An

Re: How to build an outgoing tcp connection gateway that consumes messages?

2013-01-14 Thread Andrea Tarocchi
Sorry I missed the Claus Ibsen's post completely. On Mon, Jan 14, 2013 at 2:12 PM, ggalka wrote: > Hi Andrea, > you haven't understood me. > Using MINA uri in from() endpoint causes creation of TCP socket server. But > I need to work as tcp client in order to consume messages. This is not > sta

Re: Output File Name After Exec

2013-01-10 Thread Andrea Tarocchi
Hi, outFile is an option that you use to instruct the exec component on which file is the output of the executed command; in other words the component first execs the command then grab the outFile specified and put it in the body; that said, assuming ${outFilePath} is a property correctly resolve

Re: How to build an outgoing tcp connection gateway that consumes messages?

2013-01-10 Thread Andrea Tarocchi
I think that camel-mina works also as a producer ( e.g. in a .to(...) ) Another option could be camel-netty component: http://camel.apache.org/netty.html Andrea. On Thu, Jan 10, 2013 at 1:34 PM, ggalka wrote: > camel-mina for consuming messages (from(...)) uses tcp server connection > (acts a

Re: Creating dynamic folder

2013-01-10 Thread Andrea Tarocchi
The error description explains the solution: "Use the fileName option to set the dynamic expression." Use fileName option for the dynamic part like this: Andrea. On Thu, Jan 10, 2013 at 1:30 PM, tamil13 wrote: > > Hi. I want to create dynamic folder in dd-mm- based on some condition. >

Re: How to build an outgoing tcp connection gateway that consumes messages?

2013-01-10 Thread Andrea Tarocchi
One option is using camel-mina component: http://camel.apache.org/mina.html andr, if necessary, writing your own custom codec. On Thu, Jan 10, 2013 at 11:59 AM, ggalka wrote: > Hi, > > what do you think, what would be the best/quickest way to implement tcp > client message consumer in current C

Re: Output File Name After Exec

2013-01-09 Thread Andrea Tarocchi
Can you provide the non working route? On Tue, Jan 8, 2013 at 9:44 PM, neilac333 wrote: > I have a Camel route that starts off with an executable for which I use > exec > and which produces an output file. The name of the file is specified in the > outFile parameter to Exec. What I want to do ne