[RESULT] [VOTE] Release Apache Camel Kamelets 4.8.0

2024-09-19 Thread Andrea Cosentino
Hello all, The vote passes with the following results 7 +1 binding votes: Andrea Cosentino, Claus Ibsen, Otavio Rodolfo Piske, Babak Vahdat, Marat Gubaidullin, Zineb Bendhiba and Pasquale Congiusti 2 +1 non-binding votes: Gaelle Fournier and Claudio Miranda Thanks to all the voters, Cheers. An

Re: [VOTE] Release Apache Camel Kamelets 4.8.0

2024-09-19 Thread Andrea Cosentino
Hello, Thanks, the vote passes. I'll go ahead with the release. Cheers. Il giorno mar 17 set 2024 alle ore 10:10 Pasquale Congiusti < pasquale.congiu...@gmail.com> ha scritto: > +1 (binding) > > Thanks, > > Pasquale. > > On Mon, Sep 16, 2024 at 9:46 AM Andrea Cosentino > wrote: > > > Hello al

Re: Dynamic To with InOnly Exchange Pattern in Java DSL

2024-09-19 Thread Claus Ibsen
Hi You can use setExchangePattern before the toD On Thu, Sep 19, 2024 at 3:11 PM wrote: > Hi, > > is there a way to use dynamic to with InOnly Exchange Pattern from the > Java DSL? > > https://camel.apache.org/components/4.8.x/eips/toD-eip.html#_options > mentions a pattern option, but I cannot

Re: Move Kamelets spec into core

2024-09-19 Thread Andrea Cosentino
Thanks Pasquale, I personally think everything related to Kamelets should be on Camel-Kamelets repository. So I would move it there.  Are there any relationship with the website and the CRDs? Do we need to modify something in terms of docs? Thanks. --Andrea Cosentino -

Re: Move Kamelets spec into core

2024-09-19 Thread Pasquale Congiusti
Okey, then, we should be done. Right now I'm reorganizing docs between the different repos as well, moving the Kamelets part into the Kamelet Catalog repo, but I think we can manage as a separate PRs. >From next release (4.9) onward we will need to communicate the CRD spec and the java CRD depende

[QUESTION] Open API Rest DSL - bindingPackageScan

2024-09-19 Thread medved
Hello community, i try to use OpenAPI wing bindingPackageScan to map the request to a POJO my route definition looks like following: restConfiguration() .bindingMode(RestBindingMode.json) .bindingPackageScan("cz.bvv.integrationservices.model"); rest()

Re: Dynamic To with InOnly Exchange Pattern in Java DSL

2024-09-19 Thread ski n
Like Claus mentioned, it's always possible to set the exchangePattern into a separate step. A route would look something like this: from("direct:start") .setExchangePattern(ExchangePattern.InOnly) .toD("log:${header.destination}"); Raymond On Thu, Sep 19, 2024 at

Re: [QUESTION] Open API Rest DSL - bindingPackageScan

2024-09-19 Thread Marco Carletti
hello, in the openapi definition you should add the xml root definition, if the generated classes don't have the xml annotations (and it seems not) so you should try to add this in your schema/dataType "xml": { "name": "coorder" } eg: https://github.com/apache/camel-spring-boot-examples/blob/mai

Re: [QUESTION] Open API Rest DSL - bindingPackageScan

2024-09-19 Thread Claus Ibsen
Hi Without looking into this, but you could have both projects and then compare the generated classes if there is some difference. The package scanner is there to detect clases by annotations / name etc. On Thu, Sep 19, 2024 at 5:02 PM wrote: > Hello community, > > i try to use OpenAPI wing bi

Dynamic To with InOnly Exchange Pattern in Java DSL

2024-09-19 Thread Pascal.Schumacher
Hi, is there a way to use dynamic to with InOnly Exchange Pattern from the Java DSL? https://camel.apache.org/components/4.8.x/eips/toD-eip.html#_options mentions a pattern option, but I cannot find a way to use it. While there is #to(ExchangePattern pattern, String uri) I was not able to find

AW: Dynamic To with InOnly Exchange Pattern in Java DSL

2024-09-19 Thread Pascal.Schumacher
Thank you very much Claus and Raymond. I did know this method and wasn't able to google the answer. -Ursprüngliche Nachricht- Von: ski n Gesendet: Donnerstag, 19. September 2024 16:11 An: users@camel.apache.org Betreff: Re: Dynamic To with InOnly Exchange Pattern in Java DSL Like Claus