CXFRS is an Apache Camel component that provides integration with Apache CXF for connecting to JAX-RS services hosted in CXF.
0
votes
1answer
27 views
CXF InFaultInterceptor vs. OutFaultInterceptor
I am working on REST API with CXF framework. Anybody can explain to me more detail about what's different between InFaultInterceptor vs. OutFaultInterceptor? They seems belong to different phase of ...
0
votes
1answer
87 views
REST API in Camel - POST not working (XML parsing error)
I'm trying to create a sample Camel route, as the seed for a RESTful API built on a simple resource class, providing XML payloads.
The issue I've got is that my GET is working (all it does is to ...
0
votes
0answers
34 views
JAX-RS configuration for Apache CXF with annotations
I have restful services deployed and working under JBOSS AS7. In JBOSS, I have a single servlet defined in the web.xml file, and then each of the service/resource classes are annotated with @Path and ...
1
vote
1answer
63 views
Not able to get output from camel routing
I have defined a camel context with a camel route and I am having below code.
from("jetty:http://localhost:9090/camelcxfdemo/rest/cxf/camelRouter?matchOnUriPrefix=true").
...
-1
votes
1answer
123 views
JAX-RS in ServiceMix / Fuse ESB
I got the below error when I try to install a CXF example from Talend into FuseESB.
FuseESB:karaf@root> features:install talend-cxf-example-jaxrs-intro
Error executing command: Can not resolve ...
1
vote
1answer
85 views
Route from one cxf service to another through camel
I have a requirement where I am having a cxf rest service on which some data will be post. e.g.
...
0
votes
1answer
268 views
Having trouble with content based routing in Camel with a CXFRS endpoint and xPath
I am trying to create a route that is determined by the content in the REST payload using xPath. I have been successful in using routing based on the message header:
<when>
...
1
vote
0answers
192 views
Why does injected UriInfo use a different hostname than injected HttpServletRequest?
I'm learning JAX-RS, and like the idea of returning URLs to other relevant actions in a response. Using Apache TomEE JAX-RS 1.5.1, for some reason the URLs provided by an injected UriInfo instance are ...
0
votes
1answer
160 views
How to invoke a method in restful web service using camel-cxf?
I want to invoke a rest service using apache camel. Currently i am using the cxfrs component to configure my endpoint. My route looks like below:
...
0
votes
1answer
39 views
jax-rs, active mq integration
Can anyone give me a sample source code where i can use restful jax-rs web service as an interface to message broker using active mq. The requirement is traffic comes to application through jax-rs ...
1
vote
3answers
348 views
JSON String to Object Mapping
I am having an JSON Response and what I need is to Map the corresponding JSON String to the particular Response class.Is there any tools or framework to do the same.
Response class is:
import ...
3
votes
1answer
284 views
How to remove namespace prefixes from JSON response in CXF/JAX-RS?
I have the following response created by CXF using JAX-RS:
{"ns1.CustomerInformationResponse":{
"@xsi.type":"ns1:CustomerInformationResponse",
"ns2.code":"SUCCESS",
"ns1.customer":{
...
1
vote
1answer
368 views
Camel JAX-RS and Cross Domain Request
I'd like to be able to do HTTP requests on my localhost Camel instance (just for development purpose, I know this is bad practice). For now, I'm stuck with :
Origin http://localhost:8000 is not ...
1
vote
2answers
531 views
CXF RS and JAX-WS encoded content unreadable
My Issue is 2-fold and it has to do with the encoding. I have a REST web application deployed on JBoss 7.1.1. This has adapters to an external web service for which I have created stubs with CXF ...
5
votes
0answers
301 views
CXF REST APIs Documentation using Swagger
According to Swagger's tutorial, seems swagger only support Jersey framework. https://github.com/wordnik/swagger-core/wiki/java-jax-rs
If anybody have experience on making swagger work with cxf rest? ...
0
votes
1answer
170 views
JAX-RS CXF: How to get Exception from ResponseExceptionMapper
I have a provider at server to marshall MyException as follows
Response.ok(myExceptionObj, MediaType.APPLICATION_JSON).status(Response.Status.BAD_REQUEST).build();
I would like to know how I can ...
1
vote
1answer
567 views
JAX-RS CXF Exception wrapping
I would like to add an ExceptionMapper to CXF (2.6.1) which not only communicates the Response code, but also ships the exception in the payload format (I'm using JSON for now).
@Provider
public ...
1
vote
0answers
137 views
Spring bean not injected in CXF Restful Service on JBoss6
I am writing a CXF Restful service with Spring on JBoss 6. The Spring bean is not injected. Instead of showing gobs of code here, I have shared a sample project here. My understanding is that the ...
0
votes
0answers
256 views
JBoss/CXF Restful Web Service gives error 'MalformedURLException: no protocol: /'
I am writing a CXF/Maven web service with Spring for dependency injection. Following is my web service code:-
@Path("/myws")
public interface IMyWebService {
@POST
@Path("/someAction") ...
0
votes
0answers
93 views
Wsimport maven goal makes CXF RESTful service reject its JSON input
I am using a CXF RESTful service - simple plain code, test maven project with a single class for the service. This service needs to talk to a third party SOAP service. I have the WSDL file in the ...
3
votes
2answers
2k views
How to deal with input parameter in CXF request handler in general?
I have been doing some work with apache CXF(version 2.2.2) JAX-RS. I am trying to introduce data validation layer in CXF request handler before business method be invoked. Fortunately :), I am ...
2
votes
1answer
277 views
Apache Camel : CXFRS Server : Need advice for Routing
i am making restful webservices using apache cxf and camel. my configuration is something like this :
<camelcxf:rsServer id="applicationserver" address="/" staticSubresourceResolution="true">
...
2
votes
0answers
253 views
Apache Camel and CXF: Mutlitple cxf:rsServer tags .. is this possible?
I have been making restful webservices with cxf and camel, i came accross a strange issue i dont know if this is a normal camel behaviour or what.
I have multiple classes exposed as restful services ...
0
votes
2answers
615 views
Apache Camel and CXF : How do i send HTTP status code from bean
I have a restful web service based on cxf and camel. I am using Camel routing for my workflow it is something like this..
Client --> My Rest Service Class --> Camel Custom Processors --> some method ...
0
votes
1answer
882 views
Integrating Apache Camel with CXF based RESTful webservices : Need Advice
I am trying to integrate my CXF restful webservices with apache camel. the requirement is that when someone hits my webservice, i take the request parameters and connect to google or some service ...
1
vote
0answers
350 views
Passing custom object via context in JAX-RS CXF
I have an InInterceptor that gets some information from the HTTPHeaders and creates a custom object
public void handleMessage(Message message) throws Fault {
final HttpServletRequest request = ...
2
votes
0answers
295 views
Injecting CXF JAXRS MessageContext in an “in Interceptor”
I am trying to inject MessageContext in an Interceptor with the Phase as READ as follows
@Context
org.apache.cxf.jaxrs.ext.MessageContext.MessageContext messageContext;
But this is not getting ...
0
votes
1answer
275 views
Multimedia content in REST responce(XML/JSON)
In my thesis I need to test different architectures. A request to a REST web service developed using Apache CXF and Spring MVC with MySQL as back end serving references(a field in database) to ...
4
votes
2answers
6k 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")
...
0
votes
3answers
5k 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
535 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" />
...
2
votes
1answer
620 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 ...
1
vote
0answers
452 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, ...
2
votes
1answer
941 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 ...
55
votes
1answer
3k 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
3k 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
783 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.
...
