Hello Camel Riders,
I implemented a simple pipeline message pattern and ran across a situation
where I would lose the body of my inbound message as it got forwarded from
one processor to the next. In other words, the exchange.getIn().getBody()
method would return null. I finally narrowed it down
Re the subject web page and this block of sample code found at the top of the
page.
from("jms:queue:order")
.choice()
.when().header("type").isEqualTo("widget").to("bean:widgetOrder")
.when().header("type").isEqualTo("wombat").to("bean:wombatOrder")
.otherwise()
.to("bean
)
throws javax.xml.transform.TransformerException
Thank you, Claus!
Joe
Claus Ibsen-2 wrote:
>
> On Mon, Mar 23, 2009 at 3:07 PM, Joe Fernandez
> wrote:
>>
>> I am using NetBeans 6.5 to build the jar file that contains my Route(s).
>> I
>> then deploy t
files to $ACTIVEMQ_HOME/lib/optional, but
they're not Camel-related. For example, I am using the JUEL.
Thanks!
Joe
Claus Ibsen-2 wrote:
>
> On Mon, Mar 23, 2009 at 2:02 PM, Joe Fernandez
> wrote:
>>
>> Thanks for the quick response.
>>
>> My maven project c
; to said framework. See FAQ:
> http://camel.apache.org/why-do-camel-throw-so-many-noclassdeffoundexception-on-startup.html
>
> It is discouraged to use the single big .jar file, but instead use
> what you need.
> camel-core.jar, camel-spring.jar etc.
>
> The size parameter sho
Hi,
I am using Camel 1.5 and embedding Routes within ActiveMQ 5.2. When I assign
one of my Routes a seda endpoint with a size parameter, Camel hurls lots and
lots of exceptions. It appears to be searching for a suitable type converter
(String to Integer) w/out any luck. ActiveMQ does start, but m