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
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
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
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
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
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
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.
>
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
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