I have Camel route that I would like to expose as a REST Web Service. Application is deployed on Web container (Jetty/Tomcat) and Spring is used as well for DI and other "infrastructural" things.

I took a look at both camel-restlet and camel-cxfrs components and while they both provide support for exposing routes as REST services I was not able to find out how to avoid starting of separate server. What I'm really looking for is ability to define Camel route in a similar way to how routes are defined for Spring-WS inbound endpoints, e.g.

from("restlet://application/user/{id}").to(...)

Configuration of Web application should take care of accepting requests and transferring them to appropriate endpoints.

Have to admit I was pretty much surprised that I was not able to find sufficient info on the topic and I don't think that my requirements are very exotic.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

See this example http://camel.apache.org/cxf-tomcat-example.html

For Apache CXF you can use the servlet transport which allows you to tap into Tomcat/Jetty being the host container.

And if you use OSGi then take a look at this: http://camel.apache.org/cxf-example-osgi.html it shows how to use CXF with OSGi HTTP service, that should work as well for CXFRS.

link|improve this answer
Claus, thank you for pointing this out. I was able to figure out how to achieve my goal. Unfortunately I feel that I will have to avoid using camel-cxfrs altogether. While I'm a big fan of Camel I found REST integration to be very unintuitive and cumbersome. Looks like I will just use CXF-RS capabilities directly and call Camel routes explicitly from JAX-RS annotated class. – Oleg Iavorskyi Apr 15 '11 at 15:06
P.S. Would be nice to see chapter dedicated to REST WS in next edition of Camel in Action – Oleg Iavorskyi Apr 15 '11 at 15:07
The camel-restlet is IMHO easier and more lightweight, its based on the resetlet.org REST framework. And yeah I think camel-cxf/cxfrs needs better documentation. And also Apache CXF is a tad to big/complicated framework. I would like if we added a camel-jersey which seems like a nice REST framework. – Claus Ibsen Apr 15 '11 at 17:18
Yeah, camel-restlet looks like good fit for my needs but inability to find information on how to expose services without starting separate server drives me crazy. – Oleg Iavorskyi Apr 15 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.