Zheng Feng
Zheng Feng
I think the file is generated and we need to change in https://github.com/apache/camel-quarkus/blob/main/extensions/jms/runtime/src/main/doc/usage.adoc
`ref` and `bean` URI will generate xslt templates dynamically at runtime. So I think it could not be supported in native mode.
Thanks @ppalaga and I think these URIs such as `ref`and `bean` should work at JVM mode at least. `quarkus.camel.xslt.sources` must be used for `classpath:` to work in native mode but...
There is a [CAMEL-18266](https://issues.apache.org/jira/browse/CAMEL-18266) issue with `xslt:bean` currently.
@zbendhiba I think it has to add this option, please check https://github.com/apache/camel-quarkus/issues/3742#issuecomment-1120533897
@zbendhiba it's only needed when running the IT tests in **native** mode. In test or dev mode, we add a RunTimeConfigurationDefaultBuildItem in [KafkaProcessor](https://github.com/apache/camel-quarkus/blob/main/extensions/kafka/deployment/src/main/java/org/apache/camel/quarkus/component/kafka/deployment/KafkaProcessor.java#L66-L81) but it does not work in **native**...
But for this issue I think it could be closed since it has been resolved in test or dev mode.
yeah, please leave some notes in the document about running the IT test in the native mode with `KafkaDevService`. Thanks!
Hmm, nice catch! @jamesnetherton How do you get it? :)
@jamesnetherton any update?