Re: Sending object to a Dynamic Route

2013-07-03 Thread Willem jiang
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

Sending object to a Dynamic Route

2013-07-02 Thread Singh, Surya Prakash
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