Delete orphan camel lockfile

2017-09-03 Thread Matteo Cusmai
ckFiles(file, true, endpointPath, filter, antFilter, excludePattern, includePattern); } is skipped. Could you help me to understand? Thanks, Matteo Cusmai

Re: zip split end in XML

2017-05-21 Thread Matteo Cusmai
;true' To better understand, the zip file contains a dir with several files and I need to start process on the entire dir not file to file. Matteo Cusmai On Sun, May 21, 2017 at 10:45 AM, C

zip split end in XML

2017-05-21 Thread Matteo Cusmai
Hi all, I would like to write the following DSL route in XML fashion, but I don't find how to specify the end() tag. public void configure() throws Exception { ZipFileDataFormat zipFile = new ZipFileDataFormat(); zipFile.setUsingIterator(true); from("file://" + dir + "?delete=true&moveFailed=" + e

Re: [VOTE] Release Apache Camel 2.12.5

2014-10-23 Thread Matteo Cusmai
+1 On 23 Oct 2014 19:42, "Jean-Baptiste Onofré" wrote: > +1 (non binding) > > Regards > JB > > > Sent from my Samsung Galaxy smartphone. > > > Original message > From: seij...@gmail.com > Date:23/10/2014 18:30 (GMT+01:00) > To: d...@camel.apache.org > Cc: priv...@camel.apache.

Re: different context

2013-12-18 Thread Matteo Cusmai
Hi all, Could you please tell me if there are performance issues using vm component to connect 2 camel context? Is there any specific documentation about it. Thanks in advance, Matteo. On 15 Dec 2013 01:07, "Matteo Cusmai" wrote: > Hi Robert, > I know that article, it is part of

Re: different context

2013-12-14 Thread Matteo Cusmai
nkedin.com/pub/robert-simmons/40/852/a39 > <http://www.linkedin.com/pub/robert-simmons/40/852/a39>* > > > On Sat, Dec 14, 2013 at 4:52 AM, Matteo Cusmai >wrote: > > > Hi Claus, > > I am talking about this issue with Akka community in their mailing list, > I >

Re: different context

2013-12-14 Thread Matteo Cusmai
ch are the pros and cons? Cheers, Matteo. Matteo Cusmai On Sat, Dec 14, 2013 at 11:10 AM, Claus Ibsen wrote: > Oh dear maybe try to get the akka people to make this better, so you > can use a spring based camel with their stuff more easily. > > If you want to integrate 2 different

Re: different context

2013-12-14 Thread Matteo Cusmai
sl route builder classes. > > See the documentation > http://camel.apache.org/spring > > On Sat, Dec 14, 2013 at 9:24 AM, Matteo Cusmai > wrote: > > Hi all, > > I am trying to use different camel context in my app. > > > > I have a camel context ba

different context

2013-12-14 Thread Matteo Cusmai
m("context:externalContext:consumer1").to("stream:out"); } }); context.start(); Thread.sleep( 6 ); context.shutdown(); externalContext.stop(); } } I am using camel 2.12.2 (core, rabbit, stream and context). It seems to work, my question is: is my code the right way to integrate a spring camel context with a java dsl one? Thanks in advance, Matteo Cusmai

Best way to consume from seda by java

2013-11-05 Thread Matteo Cusmai
Hi all, Could you indicate me the best way to launch camel from java class and consume from a seda queue from the same class, in the same or different thread? Thanks a lot, Matteo.