Its returning an output stream that is streamed as byte arrays.
If you want a string then its easy to have it type converted to that
which can happen implicit/automatic.
So yes its by design.
On Thu, Mar 15, 2018 at 11:36 AM, Sebastiaan van Erk
wrote:
> Hi,
>
> I used the JSON data format with
Hi camel riders,
I have a problem with a route which needs to call a bean but the bean
itself is async (rxjava2)
My route is created in a vertx verticle using eventbus bridge.
my route looks like:
from("direct:process")
.bean("myProcessor", "process")
.to("log:bodyAfterProcessing")
Hello,
I am trying to migrate to Camel 2.21.0. I have two separate OSGi Blueprint
bundles, lets call them A, and B.
Bundle A's blueprint XML creates and exports a
org.apache.camel.util.jsse.SSLContextParameters as an OSGi service :
Hi there,
I'm using camel-spring-boot
I add
hello = world in my application.properties
I notice if I use
@PropertyInject("hello")
private String hello
I get
Property with key not found in properties from text
but if I use
@Value("${hello}")
it works.
this surprise me, since I was under