Re: Feature camel-activemq causes an runtime error starting the activemq-broker (twice)

2020-01-13 Thread Gerald Kallas
Hi JB, finally this works .. feature:repo-add hawtio 2.8.0 feature:repo-add activemq 5.15.11 feature:repo-add camel 3.0.0 feature:install webconsole hawtio activemq-broker-noweb camel camel-jms jms pax-jms-config pax-jms-activemq with the route http://www.osgi.org/xmlns/blueprint/v1.0.0";>

Messages with byte[] bodies are sent as "large messages" to Artemis via camel-jms and cause ConsumerTemplate exception

2020-01-13 Thread Florian Patzl
Hello, I've stumbled upon behavior in Camel + Artemis JMS that I do not understand. Camel messages with bodies of type byte[] are treated as "large messages" in Artemis - even small messages with only three bytes. In combination with "manually" polling the messages from JMS using a Camel Consumer

Re: Messages with byte[] bodies are sent as "large messages" to Artemis via camel-jms and cause ConsumerTemplate exception

2020-01-13 Thread Claus Ibsen
The byte[] vs Byte[] is likely more of a Artemis question how their JMS client handle this. For byte[] then Camel creates a javax.jms.BytesMessage and for the other it creates a javax.jmx.ObjectMessage. You can force what JMS message type Camel should use with the option (see its docs) You can als

Re: Feature camel-activemq causes an runtime error starting the activemq-broker (twice)

2020-01-13 Thread Jean-Baptiste Onofré
Hi, you can configure the jmsConnectionFacotry in one blueprint like this: http://www.osgi.org/xmlns/blueprint/v1.0.0";> and then you can use this factory in several: http://www.osgi.org/xmlns/blueprint/v1.0.0";> ...

Re: [ANNOUNCEMENT] Camel at FOSDEM 2020

2020-01-13 Thread Zoran Regvart
Hi Cameleers, short update on the social event. It'll be at A La Mort Subite[1], rue Montagne-aux-Herbes Potagères 7 in Brussels[2] on Saturday 1st of February first day of FOSDEM (ULB, Av. F. D. Roosevelt 50) from 20h onwards. It's in the city center, about 30-40 mins from FOSDEM by public transpo

Re: [ANNOUNCEMENT] Camel at FOSDEM 2020

2020-01-13 Thread Omar Al-Safi
Thank you Zoran for organizing. Looking forward to the event! Regards, Omar On Mon, Jan 13, 2020 at 3:31 PM Zoran Regvart wrote: > Hi Cameleers, > short update on the social event. It'll be at A La Mort Subite[1], rue > Montagne-aux-Herbes Potagères 7 in Brussels[2] on Saturday 1st of February

Got JAXB error when migrate from spring to Spring boot I with Camel 3

2020-01-13 Thread Jessie Ding
Hi I will work on Spring-ws component for spring boot. The example under the following directory is running well. When I try to migrate the example from spring to spring boot. I got some jaxb errors. I wonder whether it is jaxb problem or my endpoint configuration problems. Please help! Thanks

Re: Need both camel-kafka-starter & camel-kafka in Spring Boot app?

2020-01-13 Thread Ron Cecchini
Thanks, Jan, for doing that bit of research. I'll try to get in the habit of checking commits the next time something doesn't seem to be working the way it should. I look forward to Camel 3.1 and the latest batch of fixes and optimizations! (Funny side note: I saw Claus' blog post about the 3.

Stub component usage patterns

2020-01-13 Thread Jeremy Ross
Hi all, I'm not sure I understand how the Stub component is intended to be used. The canonical example seems to be a JMS consumer in production. Camel in Action says "stub any Camel endpoint by prefixing the endpoint with stub:". Cool, well if I'm testing production routes, I don't want to modify