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

2023-02-22 Thread Pasquale Congiusti
+1 (binding) Thanks! Pasquale. 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

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

2023-02-22 Thread Nicolas Filotto
Hi, I've made a test to ensure that we can launch an integration written in Java in native mode, and it worked properly. +1 (non-binding) Thx Andrea, Nicolas From: Andrea Cosentino Sent: Tuesday, February 21, 2023 18:37 To: dev ; users@camel.apache.org Subject

KameletBinding & CloudEvents & Camel JBang & Documentation

2023-02-22 Thread Mikael Koskinen
Hi, I'm wondering if KameletBinding works differently if run through Camel JBang vs running the binding using Camel-K. The documentation states that if I use http or https-endpoint as a sink, I should receive a CloudEvent from the source but this doesn't seem to be the case based on my testing us

Re: KameletBinding & CloudEvents & Camel JBang & Documentation

2023-02-22 Thread Pasquale Congiusti
Hi Mikael, yes, there are important differences when running *any* Camel application (not only KameletBindings) via Camel JBang or via Kamel CLI. First of all, in the first case you're running the application locally and you're using your local JVM to run it. The scaffolding and creation of the Mav

Invoke Rest API using apache camel spring boot.

2023-02-22 Thread Butchi Raju
Hi, I would like to send data from the get api request (" https://gorest.co.in/public/v2/users";) to the file using apache camel spring boot. Ex: from("https://gorest.co.in/public/v2/users";) .to("file:C:/textfile.txt") .log("${body}"); The code works for http on a different url but not for htt

Re: KameletBinding & CloudEvents & Camel JBang & Documentation

2023-02-22 Thread Mikael Koskinen
Hi, Ok, thanks for the detailed explanation. I was intrigued to find out that Camel-K contains the support for transforming the messages into CloudEvents and the experimentation was if I could somehow leverage that feature outside the Camel-K. But now I wonder if I could just use the KNative comp

Invoke Python Script using Camel

2023-02-22 Thread Narasimha G
Hi, I’m trying to invoke a python script in camel the file contains Some print statements but I couldn’t get the output in my IDE. Example: from(“direct:exec”) .to(“exec:python?args=--filename D:\\path\\”); Is there anything need to be added?Thanks in advance -Narasimha Gudisa