0
votes
1answer
48 views

Configuring JAXRS to do schema validation for only some service beans

I have a Spring-configured CXF-powered JAX-RS service with two service beans: <jaxrs:server id="wsServices"> <jaxrs:serviceBeans> <ref bean="a"/> <ref ...
0
votes
1answer
44 views

JBoss 7.1, BlazeDS 4 and RestEasy integration

I have a simple web app running BlazeDS 4 running on JBoss AS 7.1. I'm trying to add resteasy but there seems to be issues connecting when creating a rest call. I think that BlazeDS is somehow ...
0
votes
1answer
40 views

Cxf jaxrs:outFaultInterceptors unable to modify message

Here is my fault interceptor: public class OutFaultInterceptor extends AbstractPhaseInterceptor<Message> { public OutFaultInterceptor() { super(Phase.SEND); } @Override ...
0
votes
1answer
64 views

Implementing a RESTful service

I'm building a web service to support an Android e-reader app I'm making for our campus magazine. The service needs to return issue objects to the app, each of which has a cover image and a collection ...
0
votes
1answer
68 views

Embedded Jetty and Jax-rs xml configuration

Hey guys i am trying to configure and run a Restful service using Embedded-jetty and jax-rs i found this tutorial and it works brilliantly however one of my requirements is to configure as much as ...
0
votes
0answers
84 views

Could not autowire jaxrs client

I have this in my applicationContext.xml (I am using http://cxf.apache.org/jaxrs) <context:annotation-config /> <context:component-scan base-package="br.com.test" /> <bean ...
0
votes
1answer
187 views

java.lang.NoSuchMethodError: javax.ws.rs.ext.MessageBodyWriter.isWriteable

I followed the guide here http://docs.neo4j.org/chunked/milestone/server-java-rest-client-example.html on how to send a POST request. Using the below code I get the error java.lang.NoSuchMethodError: ...
6
votes
2answers
192 views

How can I implement this REST API and stay DRY?

I'm building a REST API for performing CRUD operations on a database. My tentative stack is Jersey, Spring, Spring Data, JPA and Hibernate. I'm also using jersey-spring to supply instances of the ...
1
vote
1answer
187 views

Comparison JAX-RS and Spring Rest Services

I am developing a secure web application that does financial transactions and using spring in it. Which will be more suitable to use for security, JAX-RS services or spring rest services? I thought of ...
1
vote
2answers
166 views

Spring REST services and JAX WS services in same context

I have a spring webapp with a DispatcherServlet and some REST webservices. This works fine. When adding some JAX WS endpoints (@WebService) and exporting using SimpleJaxWsServiceExporter it seems ...
0
votes
0answers
160 views

JAX-RS (RESTEasy, Jersey) + Srping + OSGi

I'm working on transitioning of existing Java application to OSGi service which is using Spring (injections, AOP) and exposes REST API via JAX-RS (RESTEasy in particular). I was looking around on ...
1
vote
2answers
206 views

How to handle unexpected exceptions in JAX-RS

My technology stack is Tomcat (servlet 3.0), Jersey for JAX-RS, Spring and Hibernate. When something unexpect goes wrong like some data conversion error in Hibernate, I do not want the clients to see ...
5
votes
1answer
190 views

CXF and multiple servlet mappings

Currently we have a Java webapp with a Spring MVC DispatcherServlet and two CXFServlets. The DispatcherServlet is the default servlet (mapping /), one CXFServlet maps to /api/*, the other to ...
0
votes
0answers
80 views

Locale change in REST service using CXF and Jackson

Tools Spring, CXF, Jackson, Java I am using custom Jackson serializers for formatting the JSON output. I would like to change the format based on the locale. Since this is an API, the locale could ...
0
votes
0answers
172 views

JAX-RS Client - Spring bean definition

I'm trying to autowire my jax-rs client but have this exception while instantiating : ... Caused by: javax.ws.rs.WebApplicationException at ...
3
votes
1answer
234 views

Autodiscover JAX-RS resources with CXF in a Spring application

Is it possible with Apache CXF (2.7.0) to automatically discover JAX-RS resources in the classpath? That is, classes annotated with @Path. I am using CXF in a Spring application and I have to ...
1
vote
2answers
275 views

How to use multiple JSON providers with CXF, Spring and Jackson

Requirement I am building a REST API. It has two REST calls. The call /format to output formatted JSON based on the parameters provided. The call /raw with same parameters should output JSON with raw ...
4
votes
1answer
98 views

Using Spring profiles inside a namespace

You don't need to know CXF to answer this question. Suppose I have the following XML declaration which creates a JAXRS server using CXF <jaxrs:server id="customerService" ...
0
votes
2answers
197 views

Unmarshalling JAX-RS response xml (content-type: text/xml) with formatting errors

The JAX-RS web service I'm calling is throwing xml content as text/html content type. On my side, I need to read the xml, and convert it to Java object. The problem is: the response xml isn't ...
0
votes
0answers
108 views

JAX-RS with Spring and Hibernate [closed]

I am new to using Spring and Hibernate with JAX-RS. I have managed to Configure Spring with JAX-RS together, and now i want to configure Hibernate in this. Can anyone show me a good tutorial to using ...
0
votes
2answers
71 views

JAX-RS + jersy persistence

I am creating a Rest Server using JAX-RS (Jersy) + Spring. My DB layer is MySQL. What would be the best way to store my data in my DB? Is there any alternative to Hibernate? I have never worked in ...
2
votes
1answer
844 views

REST Service with jax-rs : BeanCreationException

Hello i have a problem with apache cxf and a rest service (with jax-rs, and spring). I'm trying to publish a rest service : userService The error is : ...
1
vote
2answers
920 views

Apache CXF interceptor configuration

I created a SOAP interceptor as described in CXF docs: public class SoapMessageInterceptor extends AbstractSoapInterceptor { public SoapMessageInterceptor() { super(Phase.USER_PROTOCOL); ...
0
votes
2answers
292 views

How do I get CXF to log exceptions to the ERROR channel?

In my current install of a Spring CXF JAX-RS Servlet, exceptions are being logged to the log4j DEBUG channel: DEBUG http-8134-2 org.apache.cxf.jaxrs.impl.WebApplicationExceptionMapper - ...
1
vote
0answers
320 views

JAX-RS: Request validation using XSD, JAXB

Tech Stack: Java 1.6, JAXB, Spring 3, JAX-RS (RESTEasy) I've written a web service (REST) and now I want to validate the request using a schema. I've a working code as seen here for validation. My ...
2
votes
1answer
280 views

JAX-RS : Model and Best practices

I have a JAX-RS service (I use Jersey), and now I have to do the client. I was wondering how you guys use to deal with the model objects. Do you put you model classes in a different jar in order to ...
0
votes
1answer
247 views

OData4j and CXF with Spring

I am attempting to integrate odata4j into an existing CXF service application. The servlet already hosts an existing soap and rest service. My application server is tomcat. My web.xml: ...
1
vote
1answer
885 views

Autowired doesn't work for RESTEasy and Spring 3

I have a trouble with using @Autowired with RESTEasy 2.2.1.GA and Spring 3.0.5.RELEASE. I always get an NPE at String result = customerBo.getMsg(); into my service. How to correct autowired ...
0
votes
1answer
151 views

RESTful web services - for large requests

Tech Stack: Java 1.6, JPA (Hibernate 3), Spring 3, Oracle 11g Hello, In one of my projects, we have to create a number of web services. These web services are like 'create application' and 'udpate ...
1
vote
2answers
199 views

Load spring context in phases

This is one of those strange questions where people would ask - why? So I will start with why I would like to do this and then go into the issue. I would like to have more control over how the spring ...
0
votes
0answers
208 views

Using Jersey 1.12 + embedded grizzly 2.2.1 + spring

I am trying to write a stand-alone application, in which I want to start an embedded container and give access to RESTful resources. I have followed the instructions provided by Jersey with initial ...
0
votes
0answers
148 views

API security using Mule, Spring, and Jersey JAX-RS

Can someone point me to working code where Mule, Spring, and Jersey JAX-RS are used to secure a collection of web services? Ultimately I want to define a group (e.g. 'admin'), secure a sub-collection ...
2
votes
1answer
344 views

Spring java configuration doesn't find a bean which has been created through context:component-scan

I have so far mixed xml and java configurations with very good success, but there is a use case which seems not to work. I let spring configure my JAX-RS resources using component scan and they are ...
2
votes
2answers
1k views

Running REST with cxf-jax rs

Jun 05, 2012 8:55:57 PM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on ...
0
votes
2answers
1k views

@Autowired doesn't work when using Jersey with Spring

I am trying to use Jersey with Spring. But for the life of me, I can't figure out why my Spring dependencies aren't being injected into my Rest Class. Each time I try and invoke the autowired ...
2
votes
0answers
301 views

CXF is ignoring Spring bean configuration

I have a web application which is exposing a rest web service by cxf jax-rs. In my application context file I have something like this: ... <bean id="service" class="SomeClass"> ...
1
vote
1answer
221 views

Map UnsupportedMediaTypeException using ExceptionMapper

Is there a place where it is clearly documented that I cannot map UnsupportedMediaTypeException (because it's a rest easy exception and not custom application exception) using the ...
2
votes
1answer
1k views

Multiple Jersey Applications with same path for root resource

I recently ran into a situation where I wanted two separate Jersey applications in a single Spring MVC web app. I created two separate servlets that map to different URIs, and two separate root ...
1
vote
0answers
339 views

Contract details in JAXRS/Spring/CXF Endpoint Configuration — Namespace, PublishedUrl, etc

How do I flesh out my context configuration with Endpoint details in JAXRS? Here is what I have for JAXWS: <jaxws:endpoint id="s-myService" implementor="#myService" ...
-1
votes
1answer
50 views

Multimedia content in xml

My thesis work includes transferring of multimedia content as a request for service. The Web Service part is developed with Jax-Rs specification Apache CXF. The application behind the service is ...
3
votes
1answer
593 views

How to manage transactions with JAX-RS, Spring and JPA

I'm using JAX-RS to provide an HTTP-based interface to manage a data model. The data model is stored in a database and interacted with via JPA. This allows me to modify the interface to the data ...
1
vote
1answer
664 views

Implementing Spring Transactions with JAX-RS and Hibernate

Background I am trying to implement a RESTful web service using Apache-CXF that interacts with a database to do some CRUD operations via Hibernate. The web service consumes and produces JSON ...
0
votes
1answer
572 views

Beans injected into Apache Wink with Spring aren't registered

Following on from How do I inject a Spring bean into Apache Wink? I'm now using wink-spring-support and I thought I had things set up correctly. web.xml includes: <context-param> ...
0
votes
1answer
306 views

How do I inject a Spring bean into Apache Wink?

How do I inject Spring-managed beans into Apache Wink? I have a wink application started in web.xml that starts fine if I stub out a dummy data service @Autowired under an interface within it. I have ...
3
votes
3answers
1k views

Inject Spring beans into RestEasy

Is it possible to inject Spring beans into an RestEasy @Path class? I managed to do it with Jersey, with @InjectParam annotation, but for some other reasons, I need to switch to RestEasy, and I can't ...
0
votes
1answer
124 views

Any potential problems with having a spring mvc application and jersey in the same project?

Is there any potential gotchas with having both spring mvc and jersey framework in the same application? I want the spring to map the '/' while jersey to something like '/service/*' Other than the ...
4
votes
1answer
2k views

Jersey JAXB how to implement a MessageBodyWriter for List

I am trying to implement a MessageBodyWriter for List. with this implementation i have a null pointer exception on line ; marshaller.marshal(o, entityStream); @Provider ...
1
vote
1answer
647 views

Autowire annotation in JAX-RS and Spring

I am trying to add REST support to my Spring 3 + Hibernate application. I have created the REST support using the wizard from Netbeans, at it has put a @Autowire annotation (not @autowired) above my ...
0
votes
1answer
1k views

javax.ws.rs.WebApplicationException on Http Request

I have been trying to solve this bug for awhile now. It's a CXF, Spring web project, maven supported. Thanks in advance, and let me know if you need more information. Basically the problem occurs when ...
4
votes
1answer
1k views

Does Spring MVC support JSR 311 annotations?

While helping out someone else, I noticed they were trying to do Spring development using the @GET, @Consumes, and @Path annotations. It is my understanding that these annotations come from the ...

1 2