CXFRS is an Apache Camel component that provides integration with Apache CXF for connecting to JAX-RS services hosted in CXF. Reference http://camel.apache.org/cxfrs.html
53
votes
1answer
2k views
How to route Rest request from a local service to a remote one using Camel
I am trying to route a rest request from a cxf rest service to another. I have had a look at http://camel.apache.org/cxfrs.html which helped understand part of the process. I have a classCastException ...
3
votes
1answer
713 views
Exposure of Camel routes as REST services under Web container
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 ...
2
votes
1answer
68 views
Camel Request/Reply Correlation
I have a CXFRS endpoint, where a request such as "GET /files/x" should return file "x" from a particular directory and then delete it. The files are output from another process and then quickly ...
2
votes
1answer
463 views
Why do I get a NullpointerException when invoking the CXF-RS endpoint of a Camel route?
My app is an java webapp (WAR) that uses Apache Camel and (among others) CXF-RS and its corresponding Camel component as an implementation of JAX-RS to provide ReSTful services to the outside world.
...
1
vote
3answers
67 views
No message body writer has been found for response class ArrayList
While I am trying to return List its throwing No message body writer has been found for response class ArrayList.
I have code as follows:
@POST
@Path("/{scope}/{application}/tables")
...
1
vote
0answers
82 views
Using Jackson to parse multipart/form-data or application/json
I am using CXF with JacksonJsonProvider for my REST Services. I have a test method as follows
@POST
@Path("/book/{id}")
@Consumes({"application/json, multipart/form-data, ...
0
votes
1answer
72 views
No message body writer found : JSON : Apache CXF : RestFul Webservices
I am using apache cxf and eclipse indigo for making a simple restful application. I have a client class which posts a json object to the server and server returns back a json after some manipulation. ...
0
votes
1answer
13 views
CXF: JSON and XML response based on Content-Type
I am using the cxf and configured as follows:
' <jaxrs:extensionMappings>
<entry key="json" value="application/json" />
<entry key="xml" value="application/xml" />
...
0
votes
0answers
99 views
Spring with CXF :servlet transport factory already registered
I am using Apache CXF web services with spring.
I have implemented rest web services.
My complete application works within eclipse but if
i deploy it on external tomcat it shows info message as ...
0
votes
1answer
133 views
Apache CXFRS and CAMEL configuration
i want to consume the REST result by hitting a REST web Service available at http://someotherhost site. i have written a proxy client for it
I want to hit the above REST service using apache CXFRS ...