Re: camel-k access context from different integrations

2023-10-30 Thread Claus Ibsen
Hi No, they run in their own pod. But you can run them together in the same pod but then it will be in the same camel / jvm kamel run a.groovy b.groovy On Mon, Oct 30, 2023 at 5:30 PM Narsi Reddy Nallamilli < narsi.nallami...@gmail.com> wrote: > Hi, > > Can we access the context of one camel

camel-k access context from different integrations

2023-10-30 Thread Narsi Reddy Nallamilli
Hi, Can we access the context of one camel-k integration from another camel-k integration? e.g a.groovy has bean 'a' Can we access bean 'a' from b.groovy ? Thank you, Narsi

[ANNOUNCE] Apache Camel 3.21.2 (LTS) Released

2023-10-30 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.21.2 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new patch release with 11 improvements and fixes. I

Re: Camel SMPP component does not allow to set interface version?

2023-10-30 Thread Andrea Cosentino
As far as I see in the codebase there is no usage of InterfaceVersion class. You can open an issue on JIRA so we could investigate. Thanks Il giorno lun 30 ott 2023 alle ore 10:48 Bruno Riemenschneider < bruno.riemenschnei...@bvu.de> ha scritto: > Hi, > > I have used Camel to implement an SMS ser

Camel SMPP component does not allow to set interface version?

2023-10-30 Thread Bruno Riemenschneider
Hi, I have used Camel to implement an SMS service, and the SMSC provider wants us to use SMPP interface version v5.0. The underlying library jSMPP that is used by the Camel component supports interface versions 3.3, 3.4, and 5.0 - however, there is no way to set this in Camel. Did I overlook

Re: Camel K version 2.1.0: Camel XML: beans not working: "No bean could be found in the registry for: mybean"

2023-10-30 Thread Pasquale Congiusti
Hi Franz, Camel K is (still) only able to run a flavour of Camel Quarkus runtime (Camel K Runtime) [1]. No Spring or any other runtime is actually available. Any bean reference must be done in the Camel Quarkus way. In next version (2.2.0) we're working in order to allow you to build your applicati

Camel K version 2.1.0: Camel XML: beans not working: "No bean could be found in the registry for: mybean"

2023-10-30 Thread Forsthofer, Franz
Hi, I am trying out the latest Camel K release 2.1.0. And tried to use a camel route of format XML with a Spring bean: http://www.springframework.org/schema/beans";> Hello World On the integration po