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.
0
votes
2answers
10 views
HttpServletRequest is not visible from class loader
I'm trying to run Apache Wink in OSGI and using Felix Whiteboard register resources as services. In a minimalist OSGI environment the bundle works as expected. But, then I moved the bundle into an ...
0
votes
0answers
6 views
How to register container response filter in CXF?
I recently upgraded from apache cxf 2.6.4 to 2.7.4. I had a custom ResponseHandler registered but since the migration guide for CXF 2.7.4 mentions that they are going to deprecate response handlers ...
0
votes
0answers
23 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 ...
-1
votes
0answers
18 views
Does Jersey work with an OSGi container [closed]
Is there a simple example showing how to use Java Jersey JAX-RS with OSGi using Blueprint? A complete example with a MANIFEST.MF and the blueprint.xml files?
Thanks.
0
votes
1answer
22 views
JAX-RS client and session management
My task is to split up an existing JSF Application into a JAX-RS web-service and a JSF web-client. The split should be done at the business layer. Both, client and server should run on a different ...
0
votes
1answer
27 views
Jersey resource not resolving in OSGI
I have been following this tutorial video which shows how to run a jersey server(EDIT: A JAX-RS server via Apache Wink, see accepted answer) in OSGI. It is a short video and the process seems mostly ...
0
votes
1answer
20 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 ...
-1
votes
1answer
14 views
Building Jersey web services executable
I have developed Jersey web services for the first time. Right now I am running my services on my pc only using eclipse. How can I Make executable file for services so that I can install it on other ...
0
votes
1answer
23 views
JAX-RS: retrieve alternate format based on URL pattern
I have a simple JAX-RS service running in a Tomcat 6 container. Is it possible to display not only text but XML in the browser, in a comparable manner as in Rails by appending .xml or .json?
The ...
0
votes
1answer
16 views
JSONProvider transform elements to attributes (cxf)
We are building a REST service with CXF where we send and receive data in both JSON and XML
In the JSON version we dont want to bother our clients with using the '@' notation for attributes and using ...
0
votes
0answers
36 views
Jax-rs Regex path
I have this Jax-rs service interface:
@GET
@Path("{id: ^((?!_ah).)*$}")
@Produces(MediaType.TEXT_HTML)
public Response getStuff(@PathParam("id") String id, @Context HttpHeaders headers,
...
0
votes
1answer
15 views
Map as return type of @MatrixParameter
The Rest-api we are building we need some sort of filtering system to prevent too much (useless) data to be transfered to our client. The use of @MatrixParameter seems like a nice solution since this ...
0
votes
1answer
50 views
java.lang.UnsupportedOperationException: Attempted to serialize java.lang.Class: org.hibernate.proxy.HibernateProxy
I'm using a Restful web service (Jersy implementation) with a JSF application and used Json to get the data as follows:
carObjectDao = new GenericDAO<carObject>(carObject.class);
...
0
votes
0answers
31 views
Regex to filter/match all characters except for specific char sequence
I have this Jax-rs path:
@GET
@Path("{id: \\b(?!_ah)\\w+\b}")
public Response get(...){...}
My goal is that this get method match all character sequence except those that starts with _ah like:
...
0
votes
0answers
27 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
0answers
25 views
jax-rs 2.0 and Glassfish 4 unable to @consume JSON into Pojo
I'm trying to create a plain sample that will consume a json message and inject it in the pojo object.
I'm using the Netbeans dev build with JavaEE7 support and the latest Glassfish 4 promoted build.
...
0
votes
0answers
23 views
Oauth2 in Restlet with a JAXRS Application?
I am trying to create a REST service (in JAX-RS) with Restlet which is protected by OAuth2. Our REST service has already been written with JAX-RS and after some investigation the Oauth2 implementation ...
1
vote
1answer
46 views
SOAP webservice: Multiple references to the same object in SOAP result
I'm building a SOAP service to be used in JBoss 7.1. Until now I'm only using annotations and no XML files of generated files. Both server and client work fine for POJO's.
However, I have objects ...
0
votes
1answer
43 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
1answer
21 views
demo jax-rs resource not bound where expected on jboss
im trying to whip up a small jax-rs demo.
i have this resource class:
@Path("/cart")
public class ShoppingCartResource {
@EJB
private ShoppingCartService shoppingCartService;
@GET
...
0
votes
0answers
50 views
Can you do traditional Servlet Filtering with JAX-RS/Jersey?
Imagine you have a filter that starts a database transaction, processes the request, and then then attempts to commit the transaction.
doFilter(...) {
...
transaction.begin();
...
0
votes
0answers
24 views
transfrom array to hashed object with Jsonprovider (cxf jax-rs)
I'm building a restfull webservice which is to consumed as both json and xml.
The data i'm exposing contains lists of variable 'properties'.
(The output is created by from Jaxb java objects)
in xml ...
0
votes
0answers
18 views
How do you expose a Grails domain model using OData?
Ideally there would be a plugin that automatically exposed the Grails domain model as OData but I can't see one.
There is OData4j which will let you expose POJOs or JPA as OData however it uses ...
0
votes
0answers
32 views
JAX-RS send file as @FormParam
I have a problem with uploading "large" files to my restfull webservice. By "large" files I mean files larger than 3MB.
On the client side I use Files api from HTML5 standard and jQuery to post data ...
0
votes
1answer
38 views
+50
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
2answers
49 views
How do I load and store global variables in Jersey/Glassfish
I am creating a RESTful Web Service that wraps an antiquated vendor API. Some external configuration will be required and will be stored on the server either in a file or rdbms. I'm using Jersey ...
2
votes
2answers
67 views
How to tell JAXB which fields to serialize at run time?
I want to selectively serialize fields based on the request and the user.
For example, an admin user would be served an XML with some additional fields. Whereas a normal user would get an XML without ...
0
votes
1answer
46 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") ...
2
votes
1answer
72 views
Why @PostConstruct called twice on @Singleton
I am running a simple .war file under Glassfish 4.0-b87 that was created in Eclipse Kepler M6 using M2E as a simple project with Dynamic Web Module facet added, using Oracle Java 7 JDK/JVM.
There is ...
0
votes
1answer
27 views
Can Java EE Application Make HTTP Calls?
Can a Java EE Application -- a Servlet or a Session Bean -- make HTTP calls and still conform to portability standards? (assuming that the caller gracefully handles communication failure or ...
0
votes
0answers
16 views
JAX-RS Jersey Client on Websphere 8.5
I'm trying to deploy jax-rs client application that use jersey on was 8.5.
I was hoping I won't need to pack jersey jars inside my war, because was will provide them.
But I'm getting this error when ...
0
votes
2answers
36 views
Error in uploading file to the server using Jersey
I am trying to upload file to the server from android using Jersey Web Service. I have written the code but there is some problem in the code. It shows error-
A message body reader for Java class ...
1
vote
1answer
35 views
JAXB & HttpEntity
I am writing a REST client for my REST webservice using apache httpclient (4.x). I am using JAXB (JSON) for the request/response. In one of my webservice, I have a PUT request in which I have send the ...
0
votes
0answers
20 views
Does JAX-RS have a way to bind JAXB Annotations to APPLICATION_FORM_URLENCODED
So while using JAX-RS, you can automagically have your JAXB annotations output JSON or XML depending on the media type you set for your endpoint.
I'm surprised to see that when I set the mediatype to ...
1
vote
0answers
76 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
56 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
1answer
37 views
How can I read the json in a POST/PUT in a RestEasy interceptor for validation
I'm trying to use a RestEasy interceptor to validate a JSON object coming over for insertion or updating in a PUT/POST. Given that all I have access to by implementing PreProcessInterceptor is this ...
1
vote
1answer
39 views
@FormParam parameter always null in my JAX-RS resource service
Here is a service that I request with a curl :
time curl -i -XPOST 'http://localhost:9080/my/service' -H "Authorization:OAuth MyToken" -H "Content-Type: application/json" -d ...
0
votes
1answer
36 views
how to change port of JAX-RS services?
I code a Java EE 6 with modular JAX-RS services on jboss 7.0, spring.
I find the web service port collision as jboss use port 8080 and the web service also use the port 8080. I want change my JAX-RS ...
0
votes
1answer
46 views
JAX-RS / Jersey “.get(Integer.class)” and single JSON primitive (Integer) values?
I have a JAX-RS WebService with the following method:
@Path("/myrest")
public class MyRestResource {
...
@GET
@Path("/getInteger")
@Produces(APPLICATION_JSON)
public Integer ...
1
vote
1answer
65 views
JAXB - Unexpected elements in XML output
I have a class called Building.
It has a list of BuildingBenchAssociation records (List<BuildingBenchAssociation> benches)
BuildingBenchAssociation has a composite id made up of buildingId and ...
0
votes
1answer
39 views
How to check the role of an authenticated user in a Jersey web service
Environment: Jersey 1.17 with GlassFish 3.1.2.2, JDK 6u31.
web.xml security segment:
<security-constraint>
<display-name>SSL transport</display-name>
...
0
votes
0answers
23 views
Mixin annotation not getting honored when passed as a parameter
I have a third party class SpecialObject as:
public class SpecialObject {
private String name;
private Integer id;
private Date date;
public String getFoo() {return "foo";} //Outlier
...
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
28 views
How to enforce https connection for all sub locations? JAX-RS JBoss
The following section should enforce all clients to use a https connection.
<security-constraint>
<web-resource-collection>
...
0
votes
2answers
84 views
How to extract ObjectMapper from JAX-RS Client?
I am using Jersey JAX-RS client (version 2.0). I know it is using a Jackson ObjectMapper to generate and parse JSON. I want to use that same object to generate JSON for some java classes so that I can ...
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
36 views
Cannot serialize JPA bean due to presence of proxies
I am trying to expose an object as XML using JAX-RS.
I have a class called Client and I am returning its instance like this:
@Transactional(readOnly=true)
@GET
...


