JAX-RS: Java API for RESTful Web Services. It is an API that provides support in creating web services according to the REST architectural style.

learn more… | top users | synonyms (1)

4
votes
3answers
2k views

How a JEE6 enterprise application that offers REST web services should be organized?

Since a month ago i am studying restful web services really hard. Now that i did practice the Syntax and i understand the concepts, i decided to make a very simple enterprise application that ...
4
votes
3answers
8k views

JAX-RS with Jersey: Passing form parameters to PUT method for updating a Resource

I have to update a Person record having firstName and lastName. User should be able to change it from html form and on submit it should be updated. Here is my code. @PUT @Path("/{userId}") ...
4
votes
1answer
5k views

JAXB @XmlElements, different types but same name?

I have an Animal class and an extension of Animal called AnimalExtension. public class Animal public class AnimalExtension extends Animal The only difference between the two classes is that ...
4
votes
2answers
2k views

NPE Thrown Marshalling Entity in JAX-RS

I have a JAX-RS webservice that makes use of JPA entity classes. I have a resource class like this: @Path("/entity") public class MyEntityResource { @GET @Produces(MediaType.APPLICATION_XML) ...
4
votes
1answer
634 views

required @QueryParam in JAX-RS and what to do in their absence

I deploy a web-services component to JBoss 7 using the RESTEasy JAX-RS implementation. Is there an annotation available to declare required, mandatory @QueryParam parameters in JAX-RS ? And if not, ...
4
votes
1answer
405 views

WebApplicationException vs Response

Among all the possibilities to return a response to the client in a REST service, I've seen two possibilities that look equivalent: throwing a WebApplicationException (possibly using a Response ...
4
votes
1answer
313 views

Advantage of using JAX-RS 2.0 with CDI/Weld instead of Guice?

One goal of JAX-RS 2.0 was to integerate CDI and substitute the old @Context with the common @Inject injection. But if I look at the JSR 339 this is not mentioned. So what is actually the CDI ...
4
votes
1answer
548 views

Is it possible to set ETags using JAX-RS without resorting to Response objects?

In one of the few questions (with answers) I have found on SO regarding JAX-RS and caching, the answer to generating ETags (for caching) is by setting some values on the Response object. As in the ...
4
votes
2answers
2k views

GlassFish JAX-RS Jackson custom JSON serialization

I have a JAX-RS resource and I'd like to use a custom JSON serializer for java.util.Calendar attribute using the @JsonSerialize(using=MySerializer.class). import java.util.Calendar; import ...
4
votes
2answers
3k views

How to retrieve data from database using webservices (JAX - RS) in eclipse using Java

I have done inserting a record into database but I don't know how to retrieve it. My code is: Account.java: package com.fetch; import java.io.Serializable; import javax.persistence.Column; import ...
4
votes
1answer
2k views

Servlet filter vs. CXF interceptor for modifying request & response content?

We have built some REST (jax-rs) web services using Apache CXF. They return a JSON response. I now need to modify some of the request parameters, and response content. (Basically we need to ...
4
votes
3answers
2k 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 ...
4
votes
2answers
1k views

Case-insensitive URLs with JAX-RS

Is there any easy way to provide a case-insensitive URLs in a JAX-RS web service? The goal of this is to produce a web service which is a "lenient acceptor."1 I imagine it's possible to do this with ...
4
votes
1answer
868 views

Is it possible to configure JAX-RS method with variable number of URI parameters?

is it possible to configure GET method to read variable number of URI parameters and interpret them either as variable argument (array) or collection? I know query parameters can be read as list/set ...
4
votes
4answers
2k views

Problem with JERSEY and JAX-RS

I am new to RESTful Services. I am trying to deploy a simplest REST service using jersey, and JAX-RS, but i am getting this error, HTTP ERROR: 404 NOT_FOUND RequestURI=/hosting/demo/example Powered ...
4
votes
2answers
164 views

JAX-RS, how to prevent user A from accessing user B's restful resource

I'm using JAX-RS on Glassfish to implement a set of resources, which can be accessed only by specific users. Consider two users, userA and userB, both registered in my website. userA created its ...
4
votes
1answer
517 views

Java HTTP full duplex

I have a RESTful web service running on Jersey (GlassFish 3.1.1). This one's a bit unusual - it uses HTTP streaming. The client and server have a long running conversation in which they keep sending ...
4
votes
1answer
671 views

Can Jersey Client automatically encode POJO entities into application/x-www-form-urlencoded, or do I need to write custom MessageBodyWriter?

I am calling a RESTful web service using Jersey's Client class along with Jackson to handle serialization to/from JSON. I am also using the JSONConfiguration.FEATURE_POJO_MAPPING setting to have ...
4
votes
1answer
248 views

Throwing Informative error messages out of Jersy RESTful Webservices

I've got a RESTful webservice that does some IO&database activity in order to return a result. There are some Exceptions that I would like to see, ie exception thrown because an expected variable ...
4
votes
2answers
2k views

JAX-RS Encoding

I'm using JAX-RS to create a web (rest) service that returns results in JSON format. Everything is OK, except the encoding. For example, I get: ..., parameter:"Dep\u00f3sitos" ,... Instead of: ...
4
votes
1answer
4k views

How to customize namespace prefixes on Jersey(JAX-WS)

when serializing my resources on Jersey, I want to use namespaces in some cases. Is there any way to customize the namespace prefixes on jersey? Default: <?xml version="1.0" encoding="UTF-8" ...
4
votes
2answers
2k views

JAX-RS get entity as JAXB object and as String

I have a JAX-RS web service (using jersey) that accepts a JAXB object as the request entity. When we get an error, we want to log the original xml string that was sent to us. Currently, I am just ...
4
votes
2answers
284 views

Serialize Date in a JSON REST web service as ISO-8601 string

I have a JAX-RS application using JBoss AS 7.1, and I POST/GET JSON and XML objects which include Dates (java.util.Date): @XmlRootElement @XmlAccessorType(XmlAccessField.FIELD) public class MyObject ...
4
votes
1answer
104 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" ...
4
votes
1answer
664 views

In Jersey, can I combine QueryParams and FormParams into one value for a method?

I've got a function like: @POST @Path("/create") @Produces({MediaType.APPLICATION_JSON}) public Playlist createPlaylist(@FormParam("name") String name) { Playlist p = playlistDao.create(); ...
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 ...
4
votes
2answers
1k views

JAX-RS - Can two classes have the same @Path identifier?

I have a webapp that redirects to a particular URI: let's say /service/library. In another bundle, I have a jaxrs server that listens for /service in the URI, and defines some beans to handle the ...
4
votes
2answers
5k views

Make a collection generic in javax.xml.bind

In a REST server that I've written, I have several collection classes that wrap single items to be returned from my services: @XmlAccessorType(XmlAccessType.NONE) @XmlRootElement(name = ...
4
votes
1answer
2k views

What is the minimal configuration for REST-fully annotated service built on Spring 3 (m3)?

I'm trying to expose a REST-full service (hosted by Tomcat) and can't figure out what is the required configuration for Spring 3 (M3). This is how (example) the service looks like: @Controller ...
4
votes
1answer
116 views

NPE when using extension of a generic class in JAXB / Resteasy

I am using RestEasy 2.3.4. I am encountering NPE. I have a generic base class ValueContainer, which I plan to extend as StringValue, IntegerValue, BooleanValue, etc, by substituting the generic param ...
4
votes
1answer
181 views

Configure two cxf jaxrs clients to use the same session (cookies)

I want to connect to a REST server with a jaxrs client using apache cxf. The server has an url to authenticate and some other urls to do the actual stuff. After the login the server creates a session ...
4
votes
2answers
159 views

Jersey's path match “sandbox” or empty string

I'm having a problem with Jersey @Path where I wish to implement a sandbox environment for my system. Basically disabling or enabling the sandbox mode by the given url that could look like this: ...
4
votes
1answer
903 views

Authentication method for REST Web Service using SecurityContext

A Java EE web app was developed which has a REST Web service using Jersey. Could anyone point out an example or a path to code in Java an authentication to user access using the SecurityContext class ...
4
votes
0answers
357 views

Jersey and Filter Exception handling

I have a Jersey app configured with Spring Security handling authentication. The jersey-spring package is providing the SpringServlet class that is registered in my web.xml as a servlet. ...
4
votes
0answers
446 views

Best way to create cxf REST json-p service to be used by a GWT client

We're implementing a REST api that returns json-p using CXF and Spring. The service should work with a GWT client. The GWT client calls the service using JsonpRequestBuilder. It passes in two function ...
4
votes
1answer
549 views

Retrieve Request Body in Exception Mapper

I'm trying to retrieve the body of a request in a JAX-RS ExceptionMapper. Here is my code so far: @Provider @Componenet public class BaseExceptionMapper implements ExceptionMapper<Exception> { ...
4
votes
0answers
625 views

Obtaining actual parameter values in a Jersey ResourceFilterFactory

I want to implement custom authorisation in my REST services using Jersey. This custom authorisation inspects annotations on methods as well as the actual parameters that a method receives. My ...
4
votes
1answer
555 views

cxf client authorization issue

I use JAXRSClientFactory.create method to create proxy like this: IMyService myService = JAXRSClientFactory.create("http://myserviceurl/", IMyService.class, "login1", "pwd", null); and this code ...
3
votes
2answers
2k views

What's a JAX-RS implementation?

I have been trying to figure out how to use JAX-RS for quite some time. I started from the very basic concepts and then to gradually understand the annotation styled programming, the meaning of @Path, ...
3
votes
1answer
2k views

How Can I Retrieve The Session Id from a Jax RS Webservice?

I cannot figure out how to retrieve the session id from a given jax rs web service request. I assume it is available, but do not know how to retrieve it. I am NOT using CXF. I would be grateful for ...
3
votes
1answer
3k views

Difference between WebApplicationException and WebServiceException in the context of Jax-RS (Jersey)

I'm creating a Jersey web service, and I've found myself using both of the mentioned exception types. WebServiceException's constructor allows you to pass a String as the cause where ...
3
votes
1answer
2k views

How to unmarshal xml message with bad parent/child model

I am trying to unmarshall a 3rd party xml payload into a class. The problem is that the payload has a parent/child relationship and the root node, the parent and the children all have the same element ...
3
votes
3answers
137 views

How to deal with accept-parameters when developing a jax-rs application

In order to deal with different versions of a content-type i am trying to use the accept-parameters of the "Accept*" headers (RFC 2616). Accept: application/vnd.mycompany.mytype;version=2 , ...
3
votes
1answer
2k views

REST how to pass empty path parameter?

I'm building REST web app using Netbean 7.1.1 Glassfish 3.1.2 I have 2 URL: "http://myPage/resource/getall/name" (get some data by name) "http://myPage/resource/getall" (get all data) When ...
3
votes
2answers
161 views

Managing state in RESTful based application

We are evaluating the technology to be used for a web based application and some suggestions are to go with RESTful based services approach. Tech Stack 1) Spring 2) Apache CXF ( JAX-RS) My ...
3
votes
3answers
178 views

Injecting Java Bytecode in XML for harmful purposes

So I have been thinking whether there is a way to send an XML such that the XML contains code in (bytecode) that will be unintentionally executed by the JVM. I am using java so I think uncompiled code ...
3
votes
4answers
1k views

Java- Jersey, JAX RS

I've some experience developing Java programs. However I have always struggled to understand some basics, such as all the different components that make up a Java Enterprise Application. For example ...
3
votes
1answer
493 views

How do I get the URL of a request?

I am using Jeresy Jax-RS to build a web service. Now I need to get the url of the request with the port # if one exist. So if my service runs on http://www.somelocation.com/web/services I want to ...
3
votes
3answers
987 views

How to model parent-child entities via REST and JAX-RS

I am working on a REST based API, and having some trouble figuring out what the canonical way is to represent parent / child relationships. (I am writing beans in CXF and using JAX-RS and JAXB. I ...
3
votes
2answers
89 views

How to get the HTTP method of a REST request

In case of an exception in my Java REST application I would like to log various information on causing HTTP request. I can obtain the URI of the request and the HTTP headers via context injection ...

1 2 3 4 5 31