Hi
Java 11 is not supported with this older version of Camel. Try with a
newer version of Camel
On Wed, Jul 17, 2019 at 3:56 PM Steve Pan wrote:
>
> Hi.
> I am trying to migrate a project from Spring 3.0.3 and camel 2.8.3 to
> Spring 4.1.5 and camel 2.15.0
> I am trying to run it on Tomcat 9.
Hi.
I am trying to migrate a project from Spring 3.0.3 and camel 2.8.3 to Spring
4.1.5 and camel 2.15.0
I am trying to run it on Tomcat 9.0.12 and open JDK 11.0.3
And in my spring xml, there is a proxy as below
But I get “Cannot auto create component: vm” error? Any idea why vm component
ca
Hi,
possible to call a CDI bean from a cxfrs resourceclass or register the
resource class as CDI bean? (Wildfly Camel 4.9.0)
from("cxfrs:http://localhost:8080/tua-kodtar/rest?resourceClasses=hu.fornax.tua.kodtar.rest.KodtarRESTImpl&performInvocation=true)
@Named("kodtarRESTImpl")
public class Ko
Hi
Looks like you mix $simple{ and ${
Use just $simple{
On Tue, Jul 16, 2019 at 5:32 PM Rajiv Jacob Cheriyan
wrote:
>
> Hello,
>
> We are upgrading from Apache Camel 2.12 to 2.16.4 and running into issues
> with one of the routes.
>
> Caused by: java.lang.IllegalArgumentException: Missing ${ fr
Use
exchange.getMessage()
And if you really want to use IN or OUT then check with exchange.hasOut() first
On Wed, Jul 17, 2019 at 9:41 AM Wang Yan wrote:
>
> According to document (
> https://camel.apache.org/using-getin-or-getout-methods-on-exchange.html),
> when we modify body of exchange, we
According to document (
https://camel.apache.org/using-getin-or-getout-methods-on-exchange.html),
when we modify body of exchange, we should use exchange.getIn().setBody()
instead of exchange.getOut().setBody()
It ususally works. but for OnException block, it does not work , I have to
use exchange