Re: Programmatically creating endpoints

2010-10-18 Thread Jean-Baptiste Onofré
Hi Bruno, No sure to have fully understood what's your problem. Anyway, you can create the route in a RouteBuilder. public void myRouteBuilder(String endpoint1Name, String arg1, String value1) { RouteBuilder builder = new RouteBuilder() { public void configure() {

Re: [camel-exec] feature ?

2010-10-18 Thread Jean-Baptiste Onofré
Hi Olivier, Camel feature (mvn:org.apache.camel.karaf/apache-camel/2.4.0/xml/features) doesn't provide the camel-exec feature. You can define your own feature descriptor with the following (as commons-exec 1.0.1 is an OSGi bundle): camel-core mvn:org.apache.commons/commons-exec/1.0.1

Re: [camel-exec] feature ?

2010-10-18 Thread Jean-Baptiste Onofré
Hi Lukasz, unfortunately I don't think it's enough regarding the camel-exec dependencies. Regards JB On 10/18/2010 02:16 PM, Łukasz Dywicki wrote: Hi Olivier, You can install camel-exec using standard install command instead features: ka...@root> install mvn:org.apache.camel/camel-exec/. L

Re: [camel-exec] feature ?

2010-10-18 Thread Jean-Baptiste Onofré
No problem. The patch has been already submitted to review. I saw some properties/version (commons-io, etc) that should need some homogeneous dependency management. I will submit another patch in that way. Regards JB On 10/18/2010 04:01 PM, Olivier.Roger wrote: That's exactly what I needed

Re: JMS filtering based on selector

2010-10-20 Thread Jean-Baptiste Onofré
Hi Hossein, Before Camel 2.3.0, we don't support the selector in CamelConsumerTemplate. Anyway the selector option is an SQL92 predicate. Some character such as = should be encoded as %30 to be interpreted by Camel. Regards JB On 10/20/2010 10:19 PM, Hossein wrote: Hello, Using camel 2.2,

Re: [Camel-exec] dynamic parameters in Spring DSL

2010-10-21 Thread Jean-Baptiste Onofré
Hi Olivier, It can be interesting, yes. Could you raise an improvement Jira ? Regards JB On 10/21/2010 10:24 AM, Olivier.Roger wrote: Hello, I am using Camel version 2.4 for the new Camel-exec component. I would like to ask your opinion on this potential improvement for the usage of this c

Re: [Camel-exec] dynamic parameters in Spring DSL

2010-10-21 Thread Jean-Baptiste Onofré
Thanks Olivier, I'm gonna work on it as I'm making some change on the camel-exec component. Regards JB On 10/21/2010 10:36 AM, Olivier.Roger wrote: Sure, I just created https://issues.apache.org/activemq/browse/CAMEL-3263 CAMEL-3263

Re: Best way to recive data from an http endpoint?

2010-10-22 Thread Jean-Baptiste Onofré
Hi Stefan, When you say "get data from a web service", does it mean that you want that Camel act as a consumer, binding a HTTP endpoint expecting incoming SOAP message or Camel act as a provider and communicates with an "external" WebService ? I guess it's the first behavior: Camel as a cons

Re: Camel-Xmpp

2010-10-28 Thread Jean-Baptiste Onofré
Hi, I planned to work on some Camel components including camel-xmpp. I hope that it will be included in Camel 2.6 (as Camel 2.5 is quite out). Regards JB On 10/28/2010 01:47 PM, MDHomem wrote: Hi, I've been trying to use Apache Camel - camel-xmpp to create some routes between XMPP clients/s

Re: setting headers in destination endpoint for exec

2010-10-28 Thread Jean-Baptiste Onofré
Hi Sri, the supported headers are defined in org.apache.camel.component.exec.ExecBinding. In your case ExecBinding.EXEC_COMMAND_ARGS header which contains a List where you can find you workingDir argument. Regards JB On 10/28/2010 02:05 PM, Sri wrote: Hello All, I am using camel-exec fo

Re: Properties in Java DSL

2010-10-29 Thread Jean-Baptiste Onofré
Hi Olivier, why not simply make something like the following in the RouteBuilder: Properties properties = new Properties(); properties.load(file); from("uri").throttler(Integer.parseInt(properties.getProperty("throttler.value")).to("uri"); Moreover, if you use it in SMX4, you can get the proper

Re: Camel Excel Data Component

2010-11-04 Thread Jean-Baptiste Onofré
Hi Russ, this kind of component doesn't exist yet. I'm preparing two camel components, once based on pdfbox and one based on POI. My idea is to extend Camel to a kind of document composer/printer tool. Regards JB On 11/04/2010 04:03 PM, Pitre, Russell wrote: I searched the mailing list archi

Re: Camel + NMR + Karaf (OSGi) possible without ServiceMix?

2010-12-01 Thread Jean-Baptiste Onofré
Hi Klaus, yes you can run Karaf + Camel + ServiceMix NMR. What issues had you ? Regards JB On 12/01/2010 02:09 PM, klausb wrote: Can I run the above triplet (Camel + NMR + Karaf) without using full-blow ServiceMix installation? I tried to install nmr features into karaf, but without success

Re: Camel + NMR + Karaf (OSGi) possible without ServiceMix?

2010-12-01 Thread Jean-Baptiste Onofré
Yes, you have to add the ServiceMix NMR URL, for example: features:addurl mvn:org.apache.servicemix.nmr/apache-servicemix-nmr/1.3.0-SNAPSHOT/xml/features After that you will get all NMR features available. You can create custom Karaf distribution by adding camel and nmr features descriptors

Re: Camel + NMR + Karaf (OSGi) possible without ServiceMix?

2010-12-02 Thread Jean-Baptiste Onofré
camel-nmr feature is provided by ServiceMix 4 (the main features subproject). It's contained in the features descriptor available on, for example: mvn:org.apache.servicemix/apache-servicemix/4.3.0-SNAPSHOT This features descriptor provides camel-nmr, camel-activemq, examples-camel-osgi, exampl

Re: Copy files between 2 windows servers with Camel - Can it be done?

2021-08-02 Thread Jean-Baptiste Onofré
Hi Ronnie, Yes it's possible, but the right question is with "which" protocol. You have different options: - go via a messaging middleware (like Kafka or ActiveMQ) - use FTP or kind of shared filesystem (NFS, SMB, ...) Basically, Camel can read (consume) files from one machine and send to Acti

Re: Feature camel-atlasmap not found

2021-08-16 Thread Jean-Baptiste Onofré
Hi, IMHO, we should create a Jira to add Karaf support for non existing features. I can work on it (using component private package or creating required bundle). @Gerald, can you please create a Jira about atlasmap ? Thanks, Regards JB On 13/08/2021 22:24, Gerald Kallas wrote: Ah ok. Tx.

Re: Feature camel-atlasmap not found

2021-08-18 Thread Jean-Baptiste Onofré
Hi Gerald, Thanks, I created the Jira at Camel (with karaf as component) as it's not really a Karaf task. Regards JB On 18/08/2021 16:36, Gerald Kallas wrote: Hi JB, done. See https://issues.apache.org/jira/projects/KARAF/issues/KARAF-7241 Best Gerald Jean-Baptiste Onofré h

Re: Migration from 2.x to 3.x

2021-08-27 Thread Jean-Baptiste Onofré
Hi, Most of the time, you have one bundle (blueprint, scr, ...) == one camel context. Technically speaking, you can have several camel contexts in the same bundle (for instance several blueprint XML, or service). You can take a look on the Karaf camel examples. Regards JB On 27/08/2021 16:5

Re: Using Camel, Blueprint (Aries), OSGI and Spring - Place holder issue

2021-09-16 Thread Jean-Baptiste Onofré
You can use a flat aries blueprint property placeholder backed with ConfigAdmin or a file. Is it what you want ? Regards JB On 16/09/2021 15:46, Andrei Petru Mura wrote: This definitely isn't a good option as I don't intend to make a difference by the way in which I reference a variable. Anyw

Re: Camel load resource from classloader broken

2022-01-03 Thread Jean-Baptiste Onofré
Hi François, thanks for pointing this. That's a *huge* regression impacting camel-karaf. Definitely we have to fix that (I consider this regression as blocker/critical). Can you create a Jira about that, I will fix that ? Thanks, Regards JB On 03/01/2022 17:35, Francois Papon wrote: Hi, I

Re: Lost connection to ActiveMQ for Camel routes after configuration changes

2022-02-17 Thread Jean-Baptiste Onofré
Hi Frank, does restarting the blueprint container help (not the bundle, I mean restarting the route using camel:* commands for instance) ? Regards JB On Thu, Feb 17, 2022 at 3:37 PM Zinner, Frank Uwe Alfred wrote: > > > Hi, > I have a running Kafka 4.2.15 with Camel 3.11.5 and ActiveMQ 5.16.2 w

Re: EXT:Re: Lost connection to ActiveMQ for Camel routes after configuration changes

2022-02-18 Thread Jean-Baptiste Onofré
] - DEBUG MessageDatabase >- dise - Checkpoint > started. > 2022-02-17 17:08:58,607 [eckpoint Worker] - DEBUG MessageDatabase >- dise - Checkpoint done. >

Re: EXT:Re: Lost connection to ActiveMQ for Camel routes after configuration changes

2022-02-18 Thread Jean-Baptiste Onofré
By the way, I have routes with jms endpoints, and afair, it works fine. So I have to check. Regards JB On Fri, Feb 18, 2022 at 10:36 AM Jean-Baptiste Onofré wrote: > > Thanks for the update. > > Let me try to reproduce it with a simple route. > > Regards > JB > > On

Re: Wiring issues with camel-cxf 3.14.2 and CXF 3.4.5 on Karaf 4.3.6

2022-04-12 Thread Jean-Baptiste Onofré
Hi Stephan, About the version range, [3.4,3.4] includes 3.4.5, so it's normal that it wires. [3.4.4,3.4.4] will exclude 3.4.5, but it will include 3.4.4.x. filter:="(&(osgi.wiring.package=org.apache.cxf)(version>=3.4.0)(version<=3.4.0))" will actually exclude 3.4.5 (but again, it could include 3

Re: [SPAM] Re: Wiring issues with camel-cxf 3.14.2 and CXF 3.4.5 on Karaf 4.3.6

2022-04-12 Thread Jean-Baptiste Onofré
pring | 3.4.5 | 307 | > org.apache.cxf.cxf-rt-bindings-soap > org.apache.cxf.binding.soap.wsdl.extensions | 3.4.5 | 307 | > org.apache.cxf.cxf-rt-bindings-soap > org.apache.cxf.binding.soap.wsdl11 | 3.4.5 | 307 | > org.apache.cxf.cxf-rt-bindings-soap > or

Re: Camel 3.14.2 features, xml-specs-api loading jaxb-runtime/2.3.1_1

2022-05-03 Thread Jean-Baptiste Onofré
Hi Martin, +1, it's already planned for a while: https://issues.apache.org/jira/browse/CAMEL-16888 Feel free to comment in this Jira. As you can see on the mailing list (dev), I'm restarting/reviving camel-karaf ;) Regards JB On Tue, May 3, 2022 at 3:23 PM Martin Lichtin wrote: > > Camel 3.14

Re: [VOTE] Release Apache Camel K 1.9.1 and Camel-Kamelets 0.8.1

2022-05-09 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Mon, May 9, 2022 at 2:42 PM Andrea Cosentino wrote: > > Hello all: > > This is a combined vote to release Apache Camel K 1.9.1 and Kamelets 0.8.1. > > This is a patch release fixing an issue with OLM installation and a little > bug on the AWS Kinesis source Kamelet. >

Re: Karaf BundleStateService not accessible

2022-05-16 Thread Jean-Baptiste Onofré
Hi, It's not a big deal, it means that the bundle will stay active even if the context is stopped. Which makes sense as you can have several contexts in the same blueprint container. Anyway, it's worth it to improve this. Can you please share a test case to reproduce it (I tried and it works fine

Re: [VOTE] Release Apache Camel K 1.9.2

2022-05-17 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, May 17, 2022 at 11:29 AM Andrea Cosentino wrote: > > Hello all: > > This is a combined vote to release Apache Camel K 1.9.2. > > This is a patch release fixing an issue with OLM installation and Kamelets > support. > > Camel K release files: > https://dist.apache.

Re: Karaf BundleStateService not accessible

2022-05-19 Thread Jean-Baptiste Onofré
0) for some Karaf packages. > I fully understand that Camel is only tested against certain versions of > Karaf, but still find this restriction somewhat unnecessary as long as > the service/interface is compatible. > > On 16/05/2022 18:18, Jean-Baptiste Onofré wrote: > > Hi, > >

Re: Training request

2022-05-31 Thread Jean-Baptiste Onofré
Hi, You can take a look on Camel commercial support to find training provider: https://camel.apache.org/manual/commercial-camel-offerings.html Regards JB On Tue, May 31, 2022 at 10:48 AM Maciej Kajetan Chrzanowski wrote: > > Hello, > I was wondering if there are any training sessions related t

Re: producerTemplate gets blocked calling back to previous OSGI bundle

2022-06-02 Thread Jean-Baptiste Onofré
Hi, It looks like a change in the Camel routing engine (DefaultAsyncProcessorAwaitManager). Let me take a look. Regards JB On Wed, Jun 1, 2022 at 8:21 PM Wing, Lucas A (US) wrote: > > Hey guys, question about some camel functionality. > > Java version: jdk1.8.0_152 > Karaf version: 4.3.2 (I a

Re: Supporting camel-jira OSGi deployment

2022-06-08 Thread Jean-Baptiste Onofré
Hi, This kind of issue would not be an issue with the new approach I'm preparing for Camel component (creating component uber bundle with private package): any component will be available as bundle, no need to create SMX bundles and features. Anyway, can you please create a Jira about camel-jira

Re: Does camel-extra/firebase component works properly with the latest versions of Camel?

2022-06-09 Thread Jean-Baptiste Onofré
Hi I'm not sure about camel-firebase component. I updated camel-wmq to 3.15.x individually and most of the components, but I didn't test all components. Regards JB On Thu, Jun 9, 2022 at 10:54 AM Vyacheslav Boyko wrote: > > I've found this component on github > > https://github.com/camel-extra/

Re: Get Bundle Version from CamelContext or CamelMessage

2022-07-07 Thread Jean-Baptiste Onofré
Hi, You have two ways to do that: 1. in your blueprint XML, you can inject blueprintBundleContext (implicit bean) in your camel route/processor. 2. you can do FrameworkUtil.getBundle(Exchange.class).getBundleContext() Regards JB On Thu, Jul 7, 2022 at 4:33 PM Ephemeris Lappis wrote: > > Hello.

Re: Get Bundle Version from CamelContext or CamelMessage

2022-07-08 Thread Jean-Baptiste Onofré
ages the > Camel Context... > > What other class could be used to retrieve my bundle ? > > Thanks again. > > Regards. > > > Le ven. 8 juil. 2022 à 06:49, Jean-Baptiste Onofré a > écrit : > > > > Hi, > > > > You have two

Re: Component activemq not found

2022-08-20 Thread Jean-Baptiste Onofré
That's correct: activemq-camel has been removed. You can now use camel-jms (recommended) or camel-activeemq. You can wrap your own component if needed, but I would rather update to camel-jms (not so hard to do). Regards JB On Fri, Aug 19, 2022 at 12:33 PM Ephemeris Lappis wrote: > > Hello. > >

Re: Component activemq not found

2022-08-21 Thread Jean-Baptiste Onofré
of declaring or naming the connexion factory to make it > available for routes with camel-jms endpoints ? > > Thanks a lot for your help. > > Regards. > > Ephemeris Lappis > > Le 21/08/2022 à 08:12, Jean-Baptiste Onofré a écrit : > > That's correct: activemq-ca

Re: Component activemq not found

2022-08-22 Thread Jean-Baptiste Onofré
; 52 │ Active │ 80 │ 5.17.1 │ ActiveMQ :: OSGi bundle > > I saw that it also gets the class, but doesn't export it : > > karaf@root()> bundle:classes 52 | grep javax.jms.ConnectionFactory > javax/jms/ConnectionFactory.class | exported: false > > Can I deduc

Re: Component activemq not found

2022-08-24 Thread Jean-Baptiste Onofré
utes/0.0.1-SNAPSHOT > > The referenced services (my custom ones, a data source and the jms connection > factory) are all found without any problem, and my routes are started, and > work as expected, including XA transactions... > > What's wrong when the bundle is dep

Re: Component activemq not found

2022-08-25 Thread Jean-Baptiste Onofré
; Do you think that in my new post I should mention a Karaf feature > installer's (its "resolver") issue, since the bundle installer has no > problem finding the existing services to satisfy requirements ? > > Thanks again. > > Le jeu. 25 août 2022 à 07:23, Jean-Baptiste Ono

Re: camel-spring-security feature

2022-08-26 Thread Jean-Baptiste Onofré
Hi, It seems spring-security version used is 4.x, whereas spring-securiy 5.x feature is available. I gonna take a look and fix the feature/bundles. Regards JB On Fri, Aug 26, 2022 at 11:16 AM BROUCKE Vincent < vincent.brou...@contractor.voo.be> wrote: > Hi, > > I would like to install camel-sp

Re: Load a route from Blueprint XML

2022-09-29 Thread Jean-Baptiste Onofré
Hi you can take a look on the examples in Karaf: https://github.com/apache/karaf/tree/main/examples/karaf-camel-example Regards JB On Mon, Sep 26, 2022 at 3:51 PM Domke, Alexander wrote: > > Hello all, > > I am trying to load an external route from a blueprint XML file and it is not > working

Re: [VOTE] Release Apache Camel Kamelets 0.9.3

2022-11-06 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Fri, Nov 4, 2022 at 10:33 AM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing only camel-kamelets 0.9.3. > > The release contains fixes and it's updated to Camel 3.18.3. > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/c

Re: [VOTE] Release Apache Camel Kamelets 3.20.0

2022-12-21 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Wed, Dec 21, 2022 at 2:25 PM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.0 > > The release contains fixes and it's updated to Camel 3.20.0. > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-

Re: [Follow/Help] - Apache Camel v4 work in progress

2023-01-12 Thread Jean-Baptiste Onofré
Hi Claus, Thanks for that (and I saw you invited me on this channel, thanks :) ). Regards JB On Thu, Jan 12, 2023 at 9:29 AM Claus Ibsen wrote: > > Hi > > We have created a room on zulip chat where you can follow and participate > with the work for Camel v4 that just started this week > > https

Re: [VOTE] Release Apache Camel K 1.10.4 and Camel Kamelets 0.9.4

2023-01-24 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Jan 24, 2023 at 6:33 PM Andrea Cosentino wrote: > > Hello, > > This is a combined vote to release Apache Camel K 1.10.4 and Camel Kamelets > 0.9.4 > > We are upgrading the base image from openjdk for JDK 11 to Temurin JDK11 > (since Openjdk won't release JDK 11 im

Re: [VOTE] Release Apache Camel K 1.11.1

2023-01-24 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Jan 24, 2023 at 6:50 PM Andrea Cosentino wrote: > > Hello, > > This is a combined vote to release Apache Camel K 1.11.1 > > Camel K 1.11.1 wasn't supposed to be an LTS release, but since OpenJDK > image for JDK 11 has been discontinued (and suddenly removed from D

Re: [VOTE] Release Apache Camel Kamelets 3.20.1.1

2023-01-27 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Thu, Jan 26, 2023 at 7:43 AM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.1.1 > > The release contains fixes and it's updated to Camel 3.20.1.1 > > It's mainly related to this issue: > https://github.com/apache/camel-kamel

Re: [VOTE] Release Apache Camel K 1.12.0 and Camel K runtime 1.17.0

2023-02-21 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Feb 21, 2023 at 6:37 PM Andrea Cosentino wrote: > > Hello, > > This is a combined vote to release Apache Camel K 1.12.0 and Camel K Runtime > 1.17.0. > > This release contains also the Camel K CRD 1.12.0: and experimental module > containing all the CRDs for this

Re: [VOTE] Release Apache Camel Kamelets 4.0.0-M2

2023-04-13 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Thu, Apr 13, 2023 at 2:40 PM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 4.0.0-M2 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-kamelets/4.0.0-M2 > Kamelets staging repository: > https://repo

Re: [VOTE] Release Apache Camel Kamelets 3.20.3

2023-04-13 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Thu, Apr 13, 2023 at 2:41 PM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.3 > > This release contains bug fixes and upgrade to latest camel 3.20.3 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/

Re: [VOTE] Release Apache Camel Kamelets 3.20.4

2023-05-17 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, May 16, 2023 at 12:15 PM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.4 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-kamelets/3.20.4 > Kamelets staging repository: > https://reposit

Re: [VOTE] Release Apache Camel K 1.12.1 and Camel K runtime 1.17.1 - second attempt

2023-06-08 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Wed, Jun 7, 2023 at 2:56 PM Pasquale Congiusti wrote: > > Hello, > > This is a combined vote to release Apache Camel K 1.12.1 and Camel K > Runtime1.17.1. The release also contains the Camel K CRD 1.12.1, a Java > client for Kubernetes Camel K CRDs. The release is base

Re: [VOTE] Release Apache Camel Kamelets 3.20.6

2023-06-26 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Mon, Jun 26, 2023 at 11:41 AM Andrea Cosentino wrote: > > Hello all: > > This is a vote for releasing camel-kamelets 3.20.6 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-kamelets/3.20.6 > Kamelets staging repository: > https://reposit

Re: [VOTE] Release Apache Camel Kamelets 4.0.0-RC1

2023-07-06 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Wed, Jul 5, 2023 at 12:23 PM Andrea Cosentino wrote: > > Hello all, > > This is a vote for releasing camel-kamelets 4.0.0-RC1 > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-kamelets/4.0.0-RC1 > Kamelets staging repository: > https://re

Re: [VOTE] Release Camel K Runtime 2.16.0

2023-07-06 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Jul 4, 2023 at 10:45 AM Pasquale Congiusti wrote: > > Hello, > > This is a vote to release Camel K Runtime 2.16.0. This release mostly > contains the runtime artifacts required for Camel K version 2 to be > released independently. As the Camel K Runtime depends mo

Re: [VOTE] Release Apache Camel Kamelets 4.0.1

2023-09-27 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Sep 26, 2023 at 10:13 AM Andrea Cosentino wrote: > > Hello all, > > This is a vote for releasing camel-kamelets 4.0.1 > > This release will support the 4.0.1 release of Apache Camel. > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/camel-

Re: [VOTE] Release Apache Camel Kamelets 4.4.1

2024-03-22 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Fri, Mar 22, 2024 at 7:05 AM Andrea Cosentino wrote: > > Hello all, > > This is a vote for releasing camel-kamelets 4.4.1 > > This is the second release of camel-kamelets supporting LTS Camel 4.4.x and > it contains alignment to 4.4.1 and some fixes. > > Kamelets relea

Re: [VOTE] Release Apache Camel Kamelets 4.4.2

2024-04-30 Thread Jean-Baptiste Onofré
+1 (binding) Regards JB On Tue, Apr 30, 2024 at 10:48 AM Andrea Cosentino wrote: > > Hello all, > > This is a vote for releasing camel-kamelets 4.4.2 > > This is a release supporting Camel 4.4.2 and it's an LTS release. > > Kamelets release files: > https://dist.apache.org/repos/dist/dev/camel/c

Re: prepared statements in camel-jdbc?

2010-12-27 Thread Jean-Baptiste Onofré
Hi Tommy, no, currently the camel-jdbc component (in the JdbcProducer) only support "classic" statement: Statement stmt = conn.createStatement(); Feel free to create a Jira to enhance the JDBC component to support PreparedStatement. We will pick the task and implement the new feature. Rega

Re: "Failed to resolve endpoint" on ServiceMix 4.2

2011-01-04 Thread Jean-Baptiste Onofré
Hi Fernando, thanks for spotting that, it can help Camel/ServiceMix users :) Regards JB On 01/04/2011 05:53 PM, Fernando Ribeiro wrote: Hello, I've found an interesting issue when deploying a route in ServiceMix 4.2, which I discussed at http://fusesource.com/forums/thread.jspa?threadID=2493.

Re: Integrating camel with activiti

2011-01-07 Thread Jean-Baptiste Onofré
Thanks Maciek for the component. It's very interesting. I will take a look asap. Regards JB On 01/07/2011 12:26 PM, Maciek Próchniak wrote: Hi, Activiti (http://activiti.org) is a 'superdelux process engine for Java' (quote from http://forums.activiti.org/ ;)), which uses BPMN 2.0 and comes w

Re: Camel in JBOSS is return IOException

2011-01-17 Thread Jean-Baptiste Onofré
Hi, try to add jbossall-client.jar. This JBoss jar provide the JNP contact factory. Regards JB On 01/17/2011 09:02 AM, Bill wrote: Hi,guys I create a poject , and running it in the tomcat is work well. and I want deply it in the jboss server. first : I download the JBossPackageScanClassRes

Re: Problem when starting camel-cxf in karaf

2011-02-02 Thread Jean-Baptiste Onofré
Hi Christian, The problem is that the com.sun.org.apache.xerces should be provided by the JDK. If you take a look on the etc/config.properties, you will see that: 1/ com.sun.* is in the framework boot delegation 2/ the etc/jre.properties doesn't provide the com.sun.* package What you can try i

Re: AW: Problem when starting camel-cxf in karaf

2011-02-02 Thread Jean-Baptiste Onofré
Yeah, you can take a look on the ServiceMix one too :) Regards JB On 02/02/2011 10:26 AM, Christian Schneider wrote: I think I was able to solve the problem. I had to change the jre.properties to exclude some packages from the system bundle export. The jre.properties from the Talend Service Fa

Re: AW: AW: Problem when starting camel-cxf in karaf

2011-02-02 Thread Jean-Baptiste Onofré
ce Factory or do you think it would make sense to change them in the karaf distribution. Best regards Christian -Ursprüngliche Nachricht- Von: Jean-Baptiste Onofré [mailto:j...@nanthrax.net] Gesendet: Mittwoch, 2. Februar 2011 11:02 An: users@camel.apache.org Betreff: Re: AW: Pr

Re: Camel webconsole in Karaf

2011-02-03 Thread Jean-Baptiste Onofré
Agree with Claus, we can setup a Karaf Camel "profile" including a camel extended features descriptor with the console for instance. Regards JB On 02/03/2011 10:28 AM, Claus Ibsen wrote: On Wed, Feb 2, 2011 at 7:19 PM, Bengt Rodehav wrote: I mostly use Karaf to deploy Camel routes. I also us

Re: camel and business flows

2011-04-17 Thread Jean-Baptiste Onofré
Hi Romain, the first target of Camel is integration and EIP. So it's more integration oriented than business oriented. If from a technical point of view, it's possible to use Camel to implement business flows, I think that pure player in this domain is more flexible and provide more tooling

Re: Blueprint and XSLT

2011-05-02 Thread Jean-Baptiste Onofré
Hi Ioannis, did you try using Bundle-Classpath statement in MANIFEST. Something like Bundle-Classpath: ., META-INF/my/xslt Regards JB On 05/02/2011 07:28 PM, Ioannis Canellos wrote: I am building a camel route using camel-blueprint inside karaf. My route contains an xslt transfromation, but

Re: camel gui

2011-05-05 Thread Jean-Baptiste Onofré
Hi Romain, another tool that Claus forgot on the list is Talend Open Studio. A Camel Designer GUI will be available in the next Talend Open Studio release (Community Edition). It's an integrated platform powered by Eclipse. Regards JB On 05/05/2011 09:01 AM, Romain Manni-Bucau wrote: thanks

Re: Camel-vm and nmr in a OSGi framework

2011-05-12 Thread Jean-Baptiste Onofré
Hi Gabriel, Between two OSGi bundles, you can use: - pure OSGi services usage. This OSGi usage could be set in a blueprint descriptor, the same hosting Camel routes. - ServiceMix NMR. It's different from the vm: component. NMR provides to you a rich messaging and endpoint API, including audit,

Fwd: Re: Thoughts about Karaf profiles / releases / growing number of dependencies (Re: AW: AW: Problem when starting camel-cxf in karaf)

2011-05-17 Thread Jean-Baptiste Onofré
2011 14:06:51 +0200 From: Jean-Baptiste Onofré Reply-To: d...@karaf.apache.org To: d...@karaf.apache.org OK guys I got it. Here's the workaround: - I took Karaf 2.2.1 from scratch and uncompress - I changed the etc/jre.properties, in the jre-1.6 section, by: * commenting the following

Re: Karaf features file references mvn:org.apache.karaf.assemblies.features/standard/2.2.0/xml/features

2011-05-19 Thread Jean-Baptiste Onofré
Hi guys, from a general point of view, I prefer to not define Karaf in the feature set. The Karaf features are available by default in the Karaf runtime. So simply adding: war will install the war feature provided by Karaf. Pros: - you aren't link to a Karaf version Cons: - the featu

Re: Karaf features file references mvn:org.apache.karaf.assemblies.features/standard/2.2.0/xml/features

2011-05-19 Thread Jean-Baptiste Onofré
You can do it at the feature level war not at the repositories level. I think it's more elegant to not use Karaf features URL in the and use the version of the feature. Regards JB On 05/19/2011 02:05 PM, Claus Ibsen wrote: On Thu, May 19, 2011 at 1:56 PM, James Talbut wrote: Thanks Will

Re: Karaf features file references mvn:org.apache.karaf.assemblies.features/standard/2.2.0/xml/features

2011-05-19 Thread Jean-Baptiste Onofré
-Baptiste Onofré wrote: Hi guys, from a general point of view, I prefer to not define Karaf in the feature set. The Karaf features are available by default in the Karaf runtime. So simply adding: war will install the war feature provided by Karaf. Pros: - you aren't link to a Karaf ve

Re: Reading a pdf file in camel

2011-06-02 Thread Jean-Baptiste Onofré
Hi all, I wrote a Camel component based on iText for that. It also support POI. I raised a Jira for that, I will add the patch beginning of the next week. Regards JB On 06/01/2011 05:34 PM, Christian Schneider wrote: The file component can read pdfs but it won´t interpret them. So you would

Re: Camel 2.7.2 in ServiceMix 4.3.0

2011-06-09 Thread Jean-Baptiste Onofré
Hi, I think that you still have Camel 2.7.0 bundle present. I advice to update the etc/org.apache.karaf.features.cfg file to update the featuresRepositories and featuresBoot with Camel 2.7.2. Regards JB On Fri 10/06/11 08:50 , ychawla wrote:: Hello All, I am trying to get Camel 2.7.2 runn

Re: Missing Constraint: org.springframework.osgi.context

2011-06-15 Thread Jean-Baptiste Onofré
Hi Stefan, did you define org.springframework.osgi.context in the Import-Package statement of your bundle ? I assume that the Spring bundles are available in your OSGi container. Regards JB On 06/15/2011 01:33 PM, Lorenz, Stefan wrote: Hi, I just tried to upgrade from Camel 2.5 to 2.7.2. I

Re: SEDA behavior

2011-06-15 Thread Jean-Baptiste Onofré
Hi, SEDA is asynchronous, and the messages are exchanged on a BlockingQueue. To avoid overhead, you can use the size attribute to limit the number of messages to handle: from("seda:workpipie?concurrentConsumers=25&size=1000") Regards JB On 06/15/2011 02:54 PM, Frederic Tuttle wrote: I have

Re: JBoss 5.1.0 & Camel 2.7.0 - SLF4J version difference?

2011-06-17 Thread Jean-Baptiste Onofré
Hi Don, did you try to define the isolated classloader (in the deploy/ear-deployer.xml if you package your war into an ear) and use JBossWebloader (in deploy/jboss-web.deployer/META-INF/jboss-service.xml) ? Regards JB On 06/17/2011 02:34 PM, Don Doffe wrote: Thank you for the help I got bef

Re: JBoss 5.1.0, Camel, Spring, Servlet endpoint - Anyone succeded?

2011-06-17 Thread Jean-Baptiste Onofré
Hi Don, Could you try the following: 1/ in your JBoss server directory (for instance server/default), go to deployers/jbossweb.deployer 2/ edit META-INF/war-deployers-jboss-beans.xml 3/ search for a bean named WarClassLoaderDeployer 4/ add org.slf4j in the filteredPackages property Regards JB

Re: JBoss 5.1.0, Camel, Spring, Servlet endpoint - Anyone succeded?

2011-06-18 Thread Jean-Baptiste Onofré
Hi Don, just to be sure, could you try with Camel 2.6.0 ? Could you provide the code (at least where you define the CamelContext and RouteBuilder) of your camel-prototype-1-0.1 ? I'm gonna make a try on my side (deploying a camel route into JBoss using war packaging). Regards JB On 06/18/2

Re: Camel-3519, camel-web on OSGi

2011-06-20 Thread Jean-Baptiste Onofré
Hi Jim, I try to take a look today. Regards JB On 06/21/2011 08:04 AM, Jim Talbut wrote: Hi, Is there any chance of getting my patch for CAMEL-3519 into trunk before 2.8.0? I know it's quite a big change to review and I'm sure all the committers have a ton of others things to work on. Thanks

Re: Is it possible to export camel endpoint as OSGi service?

2011-06-22 Thread Jean-Baptiste Onofré
Hi Sergey, Camel already exposes context as an OSGi service. So it means that you can get the endpoint, routes, component starting from the CamelContext. For instance, you can get the CamelContext from a bundle like this: ServiceReference[] references = bundleContext.getServiceReferences(Cam

Re: ServiceMix 4.3.1 and Camel 2.8-SNAPSHOT

2011-07-06 Thread Jean-Baptiste Onofré
d disclosure is strictly prohibited. - Freeman Fang FuseSource Email:ff...@fusesource.com Web: fusesource.com Twitter: freemanfang Blog: http://freemanfang.blogspot.com -- Jean-Baptiste Onofré jbono...@apache.org http://blog.nanthrax.net Talend - http://www.talend.com

Re: ServiceMix 4.3.1 and Camel 2.8-SNAPSHOT

2011-07-06 Thread Jean-Baptiste Onofré
2-8-SNAPSHOT-tp4553864p4554656.html> Sent from the Camel - Users mailing list archive at Nabble.com. --**--- Freeman Fang FuseSource Email:ff...@fusesource.com Web: fusesource.com Twitter: freemanfang Blog: http://freemanfang.blogspot.**com<http://

Re: how to send string as a soap message to jbi endpoint

2011-07-18 Thread Jean-Baptiste Onofré
g' is valid soap string, should I convert this msg to other object ? Or should I do something else ? Apache camel 2.7 regards rafal -- Jean-Baptiste Onofré jbono...@apache.org http://blog.nanthrax.net Talend - http://www.talend.com

Re: osgi missing requirement

2011-07-25 Thread Jean-Baptiste Onofré
Hi Javier, Your bundle uses a dependencies that use event. Install the eventadmin feature: karaf@root> feature:install eventadmin It should be better :) Regards JB On Mon 25/07/11 11:01 , Javier Arias Losada wrote:: Hi all, I am in the process of migrating our old camel2.2+servicemix3.3.2 t

Re: osgi missing requirement

2011-07-25 Thread Jean-Baptiste Onofré
loworld repo-0 2011/7/25 Jean-Baptiste Onofré j...@nanthrax.net> > Hi Javier, > > Your bundle uses a dependencies that use event. > > Install the eventadmin feature: > > karaf@root> feature:install eventadmin > > It should be better :) > >

Re: osgi missing requirement

2011-07-25 Thread Jean-Baptiste Onofré
from the error I got (missing requirement [120.3] package; package=org.osgi.service. event) to the bundle you told me to install? Any documentation, database, or procedure to find out this bundle from its contained packages? Thank you very very much. Best regards. Javier Arias. 2011/7/25 Jean-Ba

Re: FileConsumer->MyProducer1->MyProducer2?

2011-08-09 Thread Jean-Baptiste Onofré
ache.camel.archetypes \ -DarchetypeArtifactId=camel-archetype-component \ -DarchetypeVersion=2.8.0 \ etc... Would be great to hear whether this should work or where my mistakes lie, as I Michael -- Jean-Baptiste Onofré jbono...@apache.org http://blog.nanthrax.net Talend - http://www.talend.com

Re: Camel Splitter with Xpath recognizes namespace, but returns null

2011-08-09 Thread Jean-Baptiste Onofré
dea where I'm going wrong? Any help would be greatly appreciated! Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Splitter-with-Xpath-recognizes-namespace-but-returns-null-tp4682976p4682976.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: upgrade to spring 3.0.6

2011-08-26 Thread Jean-Baptiste Onofré
camel 2.8.1 or 2.9.0? http://www.springsource.org/node/3212 Regards, Babak -- View this message in context: http://camel.465427.n5.nabble.com/upgrade-to-spring-3-0-6-tp4737586p4737586.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Jean-Baptiste Onofré jbono...@apach

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-02 Thread Jean-Baptiste Onofré
.util org.springframework.core [43.0] -- View this message in context: http://camel.465427.n5.nabble.com/Karaf-2-2-3-and-Camel-2-8-0-tp4763828p4763828.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Jean-Baptiste Onofré jbono...@apache.org http://blog.nanthrax.net Talend - http://www.talend.com

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-03 Thread Jean-Baptiste Onofré
package=org.springframework.core; uses:=org.springframework.util export: package=org.springframework.util org.springframework.core [43.0] -- View this message in context: http://camel.465427.n5.nabble.com/Karaf-2-2-3-and-Camel-2-8-0-tp4763828p4763828.html Sent from the Camel - Users m

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-03 Thread Jean-Baptiste Onofré
2.8.1 WDYT ? Regards JB On 09/03/2011 09:38 PM, Achim Nierbeck wrote: Hi JB, I'm +1 on that one, often I was missing the spring-tx feature in the first place :) regards, Achim Am 03.09.2011 18:54, schrieb Jean-Baptiste Onofré: Hi, I checked the issue and the problem is about the spri

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-04 Thread Jean-Baptiste Onofré
could be inline for Camel 2.8.1. Is it OK for you ? Regards JB On 09/04/2011 09:24 AM, Claus Ibsen wrote: On Sun, Sep 4, 2011 at 8:29 AM, Jean-Baptiste Onofré wrote: Hi Achim and all, I propose: 1. to cover all Spring bundles in different Karaf spring features including spring-tx 2. release

Re: Karaf 2.2.3 and Camel 2.8.0

2011-09-04 Thread Jean-Baptiste Onofré
of other projects), right? So I suggest either karaf 2.2.4 revert to spring 3.0.5(lit bit weird to me) or camel 2.8.1 should stay with karaf 2.2.2. Regards Freeman On 2011-9-4, at 下午3:30, Jean-Baptiste Onofré wrote: Hi Claus, I'm going to work on Karaf Spring features today and tomorrow a

  1   2   >