Re: Do Apache Camel needs a SAP integration?

2012-01-20 Thread Erker, Carsten
Hi Christian, yes, a colleague who is Apache member just explained it to me. We are discussing about switching to ASL 2.0 with the next version. Regards, Carsten Am 20.01.2012 um 10:36 schrieb Christian Schneider: > Hi Carsten, > > you migth want to take a look at the Apache license policie

Re: Do Apache Camel needs a SAP integration?

2012-03-16 Thread Erker, Carsten
What if the SAP stuff is mocked out at the level of the Hibersap API? If the component depends only on hibersap-core, there is no (transitive) dependency to the SAP libs. Integration testing wouldn't work anyway, since a public SAP system would be needed. Regards Carsten

How to dynamically configure directory on file consumer

2013-04-30 Thread Erker, Carsten
Hi, we got a route starting with a File consumer (from("file://input"...) and a requirement to have the input directory configurable, i.e. in our application there is some admin functionality to change the directory which the file consumer is polling. This is stored in the database. I guess thi

Re: How to dynamically configure directory on file consumer

2013-05-01 Thread Erker, Carsten
s seems like a good idea. I have logged a ticket to make this easier > https://issues.apache.org/jira/browse/CAMEL-6329 > > On Tue, Apr 30, 2013 at 5:22 PM, Erker, Carsten > wrote: >> Hi, >> >> we got a route starting with a File consumer (from("file://i

Re: How to dynamically configure directory on file consumer

2013-05-02 Thread Erker, Carsten
I'd like to share my workaround in case anybody is interested (using Camel 2.11.0): I was successful with the following approach: camelContext.stopRoute( "my-file-route", 30, SECONDS ); camelContext.removeRoute( "my-file-route" ); MyPollingRoutes newRoutes = new MyPollin

Problem with Camel FTP component because of bug in commons-net

2013-06-18 Thread Erker, Carsten
Hi, I just stumbled upon a bug in Apache Commons Net 3.2 / FTPClient. The bug is known and fixed in Commons Net 3.3: https://issues.apache.org/jira/browse/NET-502 The problem was with the FTP producer, when after putting a file to the server, I got a 5xx error as Camel tries to change back to

Re: Problem with Camel FTP component because of bug in commons-net

2013-06-19 Thread Erker, Carsten
week. Am 19.06.2013 um 09:13 schrieb Claus Ibsen: > Hi > > Ah thanks. We downgraded to 3.1 as that was working well. > Are you sure 3.3 works fine? > > On Tue, Jun 18, 2013 at 6:23 PM, Erker, Carsten > wrote: >> Hi, >> >> I just stumbled upon a bug in