You just need to make sure the message body is right, then you can route the
request to the endpoint by return the URI string.
It's hard to setup camel-cxf endpoint just by using some simple String, because
you may need to configure the CXF endpoint through Spring or Blueprint.
--
Willem Jian
Hi,
How do I send an Object to a cxf route inside a Dynamic route,
For ex:
public String route(Exchange exchange {
if (requestStatus instanceof RequestPending) {
return "cxf://"; // Need to send an object to this cxf
route.
}
}
Outside of an dynamic route