I dont want to create one bean (i.e. one interface and implementation
class) for each service. If i do that, i will end up having as much
interfaces as the number of services.
Also, if i create one rsServer, How will from() in each service route be
different from others? If i keep same endpoint (i
Hi
On 05/06/13 17:33, Tarun Kumar wrote:
I am writing restful webservices using camel cxfrs components. I want to
expose > 10 services and my service interface looks like this:
@Path("/employees")
public interface EmployeeService {
@Post
@path("/account")
someMethod1();
@Get
@Path("/books")
so
On Sun Apr 8 09:14:05 2012, RR wrote:
I am a newbie to CAMEL. Pardon me if this is a so naive.
Our users are going to call a REST webservice that's going to load a very
big XML file and respond back only a portion of the XML. I came across
tokenizeXML() in Splitter EAI pattern and played around