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.
4
votes
0answers
345 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
414 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
0answers
608 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 ...
3
votes
0answers
76 views
Match Filter with specific Method through NameBinding on RESTeasy
I am trying to specify a pre-matching filter that is only associated to some of my API calls, by following what the RESTeasy documentation suggests. Here is what my code looks like:
Name binding:
...
3
votes
0answers
271 views
How to properly interrupt JAX-RS AJAX request
I have a Java EE application deployed to JBoss 7.1.1.Final. The application makes use of JAX-RS to provide REST services to clients. One of the services holds the client connection until the response ...
3
votes
0answers
166 views
Jersey JAXRS filter that provides unmarshalled entity before hitting resource (web service)
Is there an elegant way (filters, hooks) to intercept an unmarshalled entity (and its annotations) in Jersey before it hits the web service resource methods - those annotated with @POST, @PUT.
I ...
3
votes
0answers
264 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 ...
3
votes
0answers
138 views
exchange parameters between apache cxf interceptor and jaxrs client
I'm creating an Apache CXF JAX-RS client and adding an inInterceptor
MyProxy proxy = JAXRSClientFactory.create("http://path.to.url", MyProxy.class);
ClientConfiguration config = ...
3
votes
0answers
590 views
How to setup path parameter in RESTeasy client
I have used RESTeasy for server and client. Client shares service interface with server:
public interface Service {
@Path("/start")
@GET
void start();
}
Implementation of this service ...
3
votes
0answers
774 views
Can't get SSL configured for Apache CXF and JAX-RS
I'm having trouble getting the configuration right to get my CXF REST client to talk to my CXF server. I get the dreaded javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure. ...
2
votes
0answers
57 views
Handling un-mapped Rest path
This is my current Guice configuration:
public class MyServletModule extends ServletModule {
@Override
protected void configureServlets() {
bind(MyRest.class);
...
2
votes
0answers
69 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 ...
2
votes
0answers
117 views
EJB JAX-RS @Context HttpServletRequest NullPointerException - Why?
Consider the following service:
@Path("/")
@Stateless
public class SomethingService {
@Context
final HttpServletRequest request
@POST
@Path("post/something/")
...
2
votes
0answers
92 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 ...
2
votes
0answers
324 views
Unable to process multipart/form-data from ajax in JAX-RS jersey web service
I am sending a form data request from the following Javascript:
xmlHttpReq.open("POST", "https://server.com/resource", true);
formData = new FormData(form);
xmlHttpReq.send(formData);
The server ...
2
votes
0answers
134 views
JAXB generic list serialisation using Map
I've got a class that wraps a generic list. When I put a Map in that generic wrapped list, the JAXB output is not what I expect. Items are shown, but their contents isn't.
To elaborate:
A simplified ...
2
votes
0answers
146 views
Jax RS REST API - OAuth 2.0 and Control Origin
I have a REST API built using Java JAX-RS, the API will be exposed to public and it is protected by OAuth 2.0.
I plan to use this API from internal projects I am building and because it is my API, I ...
2
votes
0answers
186 views
Standalone Java Implementation for extracting values in URI Template (RFC 6570)?
Is there a Java standalone implementation to extract values of parameters in an URI as defined by an URI-Template (RFC 6570)?
The best implementation I've found is a ruby implementation ( ...
2
votes
0answers
206 views
Elegant way of unproxy Hibernate objects
I am creating a web service with Jax-RS and GSON. Now, GSON can't convert HibernateProxy objects and I have some questions. I am having an API so that I can eager load and lazy load. When I want to ...
2
votes
0answers
119 views
Integral restful JPA over Hibernate
It seems that Eclispelink, OpenJPA and DataNucleus already provide integral restful JPA out of box.
How about Hibernate? I'm not looking for any scalfold framework that generates restful web ...
2
votes
0answers
164 views
Use EntityManager with JAX-RS and Jackson in a custom deserializer
I have data for a customer formated in JSON :
{
"name":"My Name",
"company":{
"id":9
}
}
My entity looks like :
@Entity
public class Customer {
@Id
Integer id;
...
2
votes
0answers
322 views
Can I change the response buffer size in JBoss AS7
I'm getting a VERY strange error I can't figure out in JBoss AS7. Basically the web application is a REST application that takes data in as a large POST, stores it in a database, and returns the ...
2
votes
0answers
130 views
Any sample async JAX-RS webhook example
I have a JAX-RS web service.
One of the operations may take a long time so I need to make this an asynchronous REST call and then callback the client once it's complete.
I read about "WebHooks" and ...
2
votes
0answers
184 views
No message body writer / JAX-RS / CXF
I have a generated JAXB class (from an XSD). I'm able to return as XML and JSON, but as soon as I add text/html to my Produces annotation, I get a:
"No message body writer for response class ...
2
votes
0answers
347 views
grizzly2 jersey REST app returns 404 on first request, then success on all others
I have a very simple Java REST app that uses grizzly2 (jersey-grizzly2 1.12) and jersey (jersey-bundle 1.12)
When I make my first http request, I get a 404 response (but the mapped method still ...
2
votes
0answers
121 views
JAXB instance nullability/validity with JAX-RS
With JAX-RS, do I have to check the JAXB element?
Can(Should) the container to check the content validity?
Can(Should) the container automatically responses BAD_REQUEST while unmarshalling Item ...
2
votes
0answers
300 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">
...
2
votes
0answers
145 views
Configuring Restlet + JAX-RS-extension for Android
Did anybody succed in configuring the JAX-RS-extension of Restlet to make it work on Android? There is no Android-specific release of the extension, but I would like to try it nevertheless.
Since ...
2
votes
0answers
384 views
Getting CXF JAX-RS Client to use Jackson
I can't figure out how to use Jackson with the CXF client for Jax-RS.
I've seen some references claiming I should be adding the following XML snippet, however, I have no idea where I should be adding ...
2
votes
0answers
291 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 ...
2
votes
0answers
471 views
Spring Data makes spring unable to find JAXRS's @Provider?
I am using Spring + Jersey to build an API service .
Recently , I try to incorporate Spring Data to my server .
I haven't truly use any Repositories in my running code , just add one line in my ...
2
votes
0answers
2k views
Jax-rs unmarshal json - custom type
Using jax-rs, I'm not sure how to manually unmarshal JSON into my custom Java objects.
From my browser I'm sending a simple put request with the following JSON:
{"myDate":{"dayOfMonth":23, ...
2
votes
0answers
343 views
RESTEasy JAX-RS dynamic dispatching other than subresources
RESTEasy (JAX-RS) allows dynamic dispatching via sub-resources. For instance:
POST /customers/create
{"name":"Smith","country":"jp"}
We can have a root resource to handle the path "/customers" ...
2
votes
0answers
2k views
Use REST client to call multipart/form-data Rest web service
I have the below RESTeasy based REST web service and I'm trying to use the google REST client to execute a request to test my service but I'm unsure as to how the request should be setup. I'm not sure ...
2
votes
0answers
678 views
PathParam how to set Regex to allow URL?
I am using @PathParam and the request format is like this:
@Path("/XXX/XXX/{testvariable:[\\\\s\\\\S]+}")
Here, testvariable can take values like http://google.com/myname.txt, 191.123.122.333 or in ...
1
vote
0answers
67 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 ...
1
vote
0answers
49 views
Jersey @Context scope
I have a hard time understanding the injection mechanism of Jersey. The JAX-RS Specification (http://jsr311.java.net/nonav/releases/1.1/spec/spec3.html#x3-520005) states that injection via @Context is ...
1
vote
0answers
30 views
Checking Principal-user by Injected SecurityContext inside the constructor of a web resource
I'm relatively new to Jersey and JAX-RS, but I can't find my way in the documentation about the use of the SecurityContext inside the constructor of a Resource.
Our OAUTH implementation is currently ...
1
vote
0answers
20 views
content-type; charset missing a space
Using JAX-RS and Glassfish 3.1.2 I am trying to get the charset added to the content-type.
I've tried a few of the answers on SO, but I have one issue:
@Produces(
{
MediaType.APPLICATION_JSON + ...
1
vote
0answers
90 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;
...
1
vote
0answers
53 views
Return total number of rows found while paging in JAX-RS resource
I am creating a Jax-RS resource. I would like to return the total number of records in the response. I am using a named query and a header function to add a specific "Count" variable like following:
...
1
vote
0answers
36 views
Does enunciate support generating C# clients for REST-based interfaces?
I've got a project with some REST-based interfaces and would like to generate C# code for them. Can enunciate help me doing this or is it only for WS* interfaces?
Running enunciate in the debug mode ...
1
vote
0answers
35 views
attribute added to MessageContext in request don't show up in exception chain
I have a custom RequestHandler where I do some logic, and then add an attribute to the MessageContext so that I can retrieve it in all my Resources (via the @Context annotation). This works great. On ...
1
vote
0answers
196 views
Exception while using ArrayList in resteasy services
I am getting an Exception while trying to receive the response of a resteasy webservice in client side. My response class include an another Jaxb class that consists of an ArrayList in it.
...
1
vote
0answers
120 views
JPA to JSON with only primary key/normalize data
I have two JPA Entities (Patient and Clinic) with OneToMany ManyToOne relationship. I would like to return the data in JSON format (currently with org.apache.cxf.jaxrs.provider.JSONProvider). Below is ...
1
vote
0answers
45 views
JAX-RS: is @DefaultValue passed even if some incorrect data type is passed?
My endpoint looks like
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getVariables(@QueryParam("_activeonly") @DefaultValue("no") @Nonnull final Active active) {
switch ...
1
vote
0answers
67 views
What is the significance of “org.apache.cxf.resource.method” in CXF?
I was surprised to not get any information on Google about "org.apache.cxf.resource.method". Although, there are a lot of interceptors that use it (in the code that I have been given).
For example ...
1
vote
0answers
124 views
Handling both XML and JSON response from CXF FaultOutInterceptor
As I have noticed, in my CXF JaxRS service, if I throw an exception in say READ phase (IN interceptor) and do not provide any default FaultOutInterceptor, the XMLFaultOutInterceptor takes care of ...
1
vote
0answers
190 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 ...
1
vote
0answers
95 views
Jersey: How to share ExceptionMapper among several web modules?
My exception mapper classes work perfectly when it's located inside the .war package. The problem is that I have several .war packages which share the same exception hierarchy. I'm thinking to put my ...
