Fwd: loading routes from external xml files

2023-07-31 Thread Ricardo Garcia
Hi, I am migrating to camel 4, as part of a broader migration to all jakarta API instead of javax API In camel 3 I could load routes from multiple external xml files: try (DirectoryStream ds = Files.newDirectoryStream(routesDir, "*.xml" ); DefaultResourceResolvers.FileResolver resolver = new

Re: loading routes from external xml files

2023-07-31 Thread Claus Ibsen
Hi You can use org.apache.camel.support.PluginHelper On Mon, Jul 31, 2023 at 11:04 PM Ricardo Garcia wrote: > Hi, I am migrating to camel 4, as part of a broader migration to all > jakarta API instead of javax API > In camel 3 I could load routes from multiple external xml files: > > try

Connection Pooling in (S)FTP Component

2023-07-31 Thread ICS460-BAI
Hello, due to the fact that we have many transports on a single server we need the ability to pool/reuse ftp connections. Otherwise, we have to many reconnects or to many open connections! Do you have any recommendations how we can realize such a connection pool. We are currently trying to

How to read data from a paginated API and upload it as multipart file to S3 page by page

2023-07-31 Thread Sahil Upneja
Hi Everyone ! I am trying to read data from a paginated API , Since the whole data is huge so I want to read one page from paginated API and upload it as multipart file to S3 and then read 2nd page & upload it to S3 and so on. Could you please let me know if this usecase is achievable through