Christoph Deppisch

Results 215 comments of Christoph Deppisch

This part of the documentation might also help: https://camel.apache.org/camel-k/2.2.x/kamelets/kamelets-user.html#kamelets-usage-binding It also shows how to bind to a KafkaTopic which should work in the same way as Knative resources: https://camel.apache.org/camel-k/2.2.x/kamelets/kamelets-user.html#_binding_to_a_kafka_topic

Tests are also failing locally. In one of the Pipes running I can see the following error: ``` Exception in thread "Camel (camel-1) thread #4 - timer://tick" java.lang.NoSuchMethodError: 'void com.fasterxml.jackson.core.base.GeneratorBase.(int,...

This is the Pipe that hits the error when running with Apache Camel 4.3.0 https://github.com/apache/camel-kamelets/blob/main/tests/camel-kamelets-itest/src/test/resources/avro-deserialize-pipe.yaml

The Apache Camel version used in yaks-jbang is controlled by the property in https://github.com/apache/camel-kamelets/blob/main/tests/camel-kamelets-itest/src/test/resources/citrus-application.properties#L11 We need to keep this in sync with the Apache Camel version used in the Maven...

@squakez I think this is not the same as [apache/camel-k-runtime/issues/536](https://github.com/apache/camel-k-runtime/issues/536). Yes, we have had problems with the broker name (e.g. when using a customized broker name other than default) and...

Hi, you would need a little Groovy script for this: ```xml context.setVariable('text', context.getVariable('Test${k}')) Print ${text} ``` The Groovy script has access to the test context and its variables. You need...

You create that function in Citrus in order to have it resolved in any String template (e.g. message body, header and so on) like ``` { "foo": "citrus:randomString()" } ```...

@tschlat awesome work! please bear with me as I need some more time to have a closer look

Agreed, we need to make the `null` value validation more robust. Thank you for reporting this! In case you have some time to implement your ideas contributions are very welcome!...

So the JMS message converter in Citrus creates JMS text, map or object messages based on the message payload type (see https://github.com/citrusframework/citrus/blob/main/endpoints/citrus-jms/src/main/java/org/citrusframework/jms/message/JmsMessageConverter.java#L151) It should create a JMS MapMessage when the...