0
votes
0answers
16 views

When using jersey jax-rs, is there a way to differentiate between fields sent as null and fields not sent at all

I'm using Jersey JAX-RS with Jackson (for serialization/deserialization) to implement a set of REST services. When a caller performs an update operation (ex. a PUT), I've generally followed the ...
0
votes
1answer
19 views

Custom object input for CXF-JaxRS WebClient

I am pretty new to RESTful, and trying to create a sample services to achieve POST on void methods. I am able to test the method for String class but getting Exception while testing with custom ...
0
votes
0answers
26 views

Conditional cache headers not working in JAX-RS

I am trying from a long time to implement Conditional cache headers using JAX-RS but unfortunately the caching is not working, everytime the DB call is made irrespective of whether the caching is done ...
0
votes
0answers
25 views

Accessing service path parameters from CXF Message

I am writing an interceptor to validate the requests that I see. However, I am unable to determine a way to access the path parameters (any parameter for that matter). Although, when I expand the ...
0
votes
1answer
40 views

What is the difference between JAX-RS and JAX-WS?

After reading a few articles about JAX-RS and JAX-WS, I had a few questions that I want to confirm? Can JAX-RS do Asynchronous Request like JAX-WS? Can JAX-RS access a web service that is not ...
0
votes
0answers
18 views

Can @GET define Consumes Content-Type for JAX-RS implementation?

I have been trying few samples on JAXRS (used Jersey for this example). The following is a sample stub implemenatation I have: @Path("stubservice") public class StubImpl @GET ...
0
votes
1answer
44 views

Rest service - cannot find method / operation

Thought I had some idea of how the urls are mapped, but not having any luck here. CXF 2.7.3 I have a simple rest service that uses post to consume a string. It builds and deploys. I think I should ...
1
vote
2answers
71 views

RESTEasy - Reuse method parameters when @GET/@POST

I have a method in my RESTEasy service which I'd like to use as both @GET/@POST, and its data may come from both query string and request body. @GET @POST public String myMethod(@QueryParam("param1") ...
1
vote
0answers
75 views

Can I use @RolesAllowed on RESTful Resources implemented on Apache CXF?

My question is "Can I use @RolesAllowed on RESTful Resources implemented on CXF ?". First of all, I explain the context causing this question. I'm working at some projects in which developers have ...
0
votes
0answers
24 views

RESTful Web Service with glassfishv3 --> servlet-declaration in web.xml

i`m working at my seminar paper with the topic "RESTful Web Services with JAX-RS". I`m using glassfishv3 and built a simple dynamic-web application. I was told that with JavaEE6 and glassfish3 there ...
0
votes
1answer
55 views

JAX-RS (Jersey) Admin Only API Calls

This may turn out to be more of a style question, but I'm a little stumped on how best to design a RESTful API. Let's say I want to provide the following API calls: GET /player Returns the current ...
0
votes
1answer
24 views

JAX-RS hostname change possible?

I'm currently developing a REST web service using JAX-RS. Can I change the host name which is currently "local host 8080"? Also, can I use https? I want the name to represent an API host like ...
0
votes
2answers
74 views

In Jersey, differences between returning Response and Bean or Collection of Beans

I am working on building a REST api. My question is, when using Jersey, what are the differences between my services building and returning a Response object or returning the the bean or collection. I ...
1
vote
1answer
61 views

Calling JAX-RS Web Service from JSF managed bean

I currently develop a Web application that can be accessed over HTTP by an Android application or a Web browser. Both user agents basically provide the same functionalities. The Android app calls ...
1
vote
2answers
72 views

How to use @HEAD in jax-rs using Jersey API or any other jax-rs API?

How to use @HEAD in jax-rs using Jersey API or any other jax-rs API ? please give me sample.
0
votes
2answers
31 views

Why does the presence of QueryParams affect Jersey matching order?

I have two Jersey methods that look something like this @GET @Path("/mine") @Produces(MediaType.APPLICATION_JSON) List<MyStuff> getAllMyStuff(); @GET @Path("/{id}") ...
0
votes
1answer
80 views

When trying to request RESTful URI, Jetty log returns “The server sent HTTP status code 503: Service Unavailable”

Hey guys I'm trying to create a RESTful webservice that will grab some data from a SAP application through SOAP and then transfer this data to JSON and which will then available be accessed through ...
1
vote
1answer
48 views

Returning XML object through jax-rs

I have a JAX-RS web service which looks like so: @Path("/status") @Produces("application/xml") @GET public PrecisionStatus getPrecisionValue(){ PrecisionStatus status = ... return status; } ...
0
votes
2answers
53 views

Why is this field not being serialized?

My Issue entity was created from a DB table that has several fields (id, etc...). Each issue has as a field a list of Articles, which are stored in a separate DB table. Articles have a int issueID ...
0
votes
1answer
92 views

Obtaining raw request body in JAX-RS resource method

How can I access the raw request body from a JAX-RS resource method, as java.io.InputStream or byte[]? I want the container to bypass any MessageBodyReaders for a specific resource class or method, ...
0
votes
1answer
70 views

javax.ws.rs.core.Response$Status.getReasonPhrase() Issue on JAXB, Rest service Implementation using Apache Jersey

I am facing below issue while trying to access the below REST service... I am using Apache Jersey implementation for developing rest service. I am facing below issue only when i am trying JAXB, ...
1
vote
1answer
64 views

CXF JAX-RS client proxy not maintaining cookies

I am using CXF to build client code for a JAX-RS REST service. This REST service unfortunately relies on cookies to authenticate each request and maintain other key session state. Accessing the user's ...
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
36 views

If I create a web service using JAX-RS (on netbeans), it is essentially an API to the web service?

If I create a web service using JAX-RS (on netbeans), it is essentially an API to the web service? The web service would be REST or SOAP based. I realize that the API provides the interface to the ...
1
vote
1answer
106 views

How to query all of something using $resource in AngularJS

I'm not convinced that I understand how to properly use Angular's services. I'm using a JAX-RS server-side. If services are supposed to work like (as taken from the phonecat example)... ...
0
votes
0answers
44 views

Using Jersey to modify and route the HTTP REST request

I need to create a REST proxy to route HTTP requests based on headers, query parameters and path parameter information. I am using Jersey's ContainerRequestFilter and ResourceFilter to intercept the ...
3
votes
3answers
116 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 , ...
0
votes
1answer
67 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
39 views

NoClassDefFoundError when calling function from RESTful web service

I'm trying to create a RESTful web service in java that will allow authentication with a Yubikey. I'm modifying an existing tutorial that I completed while trying to learn about REST. I'm trying to ...
0
votes
2answers
39 views

Jersey: saving data in-memory

I am building a simple REST web service using Java and Jersey. I want to store some data in-memory that can be accessed during the time that the server is online. For example: ...
0
votes
0answers
37 views

Where can one find advanced Jersey documentation?

Does there exist documentation for using Jersey's advanced features? I'm aware of the Jersey User Guide, but it seems to leave a lot of topics uncovered. The Javadocs are very terse or absent and ...
0
votes
0answers
63 views

RESTFul resource URL custamization in Java EE

I am using Jersey (V 1.17) in my Java EE project. I map the relevant Jersey Servlet to the URL pattern as follows: <url-pattern>/resources/*</url-pattern> Now the resource URLs of my ...
0
votes
0answers
360 views

Jersey: The ResourceConfig instance does not contain any root resource classes

I just tried to write a small REST example with Jersey. It compiles fine, but it does not work. The error is: cannot Deploy RestTestApp Deployment Error for module: RestTestApp: Exception while ...
2
votes
0answers
72 views

Page not found error when trying to use encryption in JAX-RS Jersey REST

I'm using Eclipse to implement REST web services using Jersey. I want all communications to be in https. So, I edited my web.xml to be <?xml version="1.0" encoding="UTF-8"?> <web-app ...
1
vote
1answer
152 views

Sending application/xml POST message to REST API doesn't work

This is the POST method with JAX-RS annotations: @POST @Consumes(MediaType.APPLICATION_XML) @Produces(MediaType.TEXT_PLAIN) public Response storeUser(User user) { boolean wasStored = ...
1
vote
1answer
75 views

Map multiple query parameters in jax-rs

I am using Jersey as the implementation library. @Path("books") public class Sample { @GET public List<Book> getBooks(@Context UriInfo uriInfo) { ...
0
votes
0answers
57 views

Reusing JAX-RS Resource Classes

I am using CXF for my REST based web services. Now I am having a challenge. My service model is based on JAX-RS Factory Bean rather than @Application (annotations driven) service. i.e., I have a ...
0
votes
0answers
31 views

unknown entity type error

I'm having a trouble concerning deleting a resource via HTTP DELETE. in the server side i have a resource like this : @Stateless @Path("books") @Produces({"application/xml","application/json"}) ...
0
votes
1answer
82 views

Basic Query on JAXRS and tomee

My understanding regarding TomEE (or any Java EE 6 container) is all that i just need to deploy a JAX-RS based application with correct service class annotated. @Path("/hr") public class HelloRest { ...
0
votes
0answers
139 views

How to inject HTTP query parameters into beans list or array as method's parameter with JAX-RS by Apache CXF?

I'm learning JAX-RS by making sample webapp, and I have a question about parameters injection from HTTP request to java method's parameters. Now, I'm trying to inject query parameters into some beans ...
0
votes
0answers
38 views

custom wadlgenerator won't work - apache cxf

I have something like this in my cxf.xml file: <jaxrs:server id="class" address="/address" > <jaxrs:serviceBeans> <ref bean="Service" /> </jaxrs:serviceBeans> ...
1
vote
1answer
78 views

How to use post method instead of get to realize restful downloading service

I am writing a service to return a xls file by using the json passed to my service. I am using JAX-RS and WINk. Since the json passed to my service is too complex to be a @QueryParam in the url, so I ...
0
votes
0answers
70 views

apache wink getjson is not able to fetch json object

I wrote a simple RESTful web service with wink, where there is an interface returning JSONARRAY. And I can get the json by directly typing the address in the browser. Then, I developed a html page and ...
2
votes
0answers
94 views

Handling specific exceptions within a mule flow

I have a JAX-RS service wrapped in a mule v3.2.1 flow which may trigger exceptions which I would like to capture and process. I would prefer to send the exception to another class and return an ...
1
vote
2answers
119 views

Consuming REST service that doesn't offer WADL

I need to work with a REST service that has a relatively simple and fixed (meaning predictably not very variant structure), yet I can't find a WADL anywhere on their site. I have previously worked ...
1
vote
0answers
92 views

Can Enunciate generate docs for an API that handles generic types?

Given an abstract, generic Resource class and a concrete implementation: public abstract class AbstractResource<T> { @Autowired private SomeService<T> service; ...
2
votes
1answer
145 views

How to access files within a JAX-RS web service directory by specifying their URL?

Given a JAX-RS web service deployed under Tomcat, how can I make some of the files accessible directly from the browser by specifying the URL like http://site/path/file? Let's say I have web service ...
4
votes
1answer
143 views

GenericEntity<List<T>>

I have a generic Jax-RS resource class and I have defined generic findAll method public abstract class GenericDataResource<T extends GenericModel> { @GET ...
0
votes
0answers
136 views

jaxrs with embedded jetty

I am trying to get a web service up using jaxrs and jetty: jaxrms.xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
0answers
103 views

Code 406 when RESTlet client tries to get ArrayList of objects via @GET from JAX-RS service

just started java development and tried to build an easy client-server application. I use JAX-RS for the server side and RESTlet for the client side. I want to call the @GET method of the server side ...

1 2 3 4 5 9