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)

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
1answer
102 views

Google App Engine + Jersey + JSP results in NOT_FOUND

Currently I'm working on my first Google App Engine application. I use a combination of Jersey (JAX-RS) and JSP 2.0 with custom tags to separate the lay-out from the application logic. The ...
0
votes
0answers
40 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
0answers
52 views

Making GAE Shiro and Resteasy work together

I am trying to make GAE-Shiro and Resteasy together. So I tried doing a quick port. However I am getting this error: [ERROR] java.lang.RuntimeException: java.lang.InstantiationException: ...
5
votes
2answers
142 views

@Stateless webservice with JPA+JTA: How to commit changes of managed entity?

I have the following simple webservice declared as @Stateless EJB running on GlassFish 3.1.2.2 with EclipseLink 2.4.1 using a JTA DataSource to connect to a MySQL database: @POST ...
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
38 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
34 views

JAX-RS configuration for Apache CXF with annotations

I have restful services deployed and working under JBOSS AS7. In JBOSS, I have a single servlet defined in the web.xml file, and then each of the service/resource classes are annotated with @Path and ...
0
votes
1answer
102 views

wsdl works fine in SoapUI but receives exception when accessed through client

I have client wsdl which works well, when tried to invoke through soap-UI, I need to call it through web service client code, hence I generated source code with 'wsimport' and tried to invoke it ...
0
votes
0answers
34 views

Formating XML output from JAXB from a specific architecture

I'm trying to use JAXB and I'm having difficulties : at first I had to send through a jersey webservice an HashMap a little but complex (Map>) so I gave up and I found another way to format my data ...
1
vote
1answer
84 views

Serializing POJOs to/from JSON using jersey: weird nesting of elements

I got the following structure of my classes: @XmlRootElement(name="rootClass") @XmlAccessorType(XmlAccessType.FIELD) public class rootClass { @XmlElementWrapper(name="children") ...
0
votes
1answer
66 views

Jersey JSON upload failure

I have an entity class looks like this. @XmlRootElement public class ImageSuffix { @XmlAttribute private boolean canRead; @XmlAttribute private boolean canWrite; @XmlValue; ...
0
votes
0answers
24 views

Custome exception XML Parsing Error: no element found

How to handle "XML Parsing Error: no element found" by some custom exception. I am getting this when I pass an invalid url through web services
0
votes
1answer
101 views

How to access CDI managed bean from JAX-RS MessageBodyWriter?

I'm struggling with accessing CDI managed beans from a JAX-RS message body handler in TomEE. My handler class (implements MessageBodyWriter<Object>, MessageBodyReader<Object>) is ...
0
votes
0answers
85 views

Publishing JAX-WS Webservice with Guice in a Servlet Application

We are currently porting an existing JBoss EJB application to a pure servlet solution which is supposed to run in a Jetty (we're currently using version 6, but the version is mostly irrelevant) and ...
1
vote
1answer
57 views

Capture all possible path parameters jax-rs regex

What is the regex to set for @Path("<what_regex>") to capture all possible path parameters depth (except for some specific path that is intended to be processed by other method)? Like: ...
0
votes
0answers
366 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
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); ...
0
votes
2answers
280 views

How to Update List of XML element using JAXB via RESTful Web Services- JAX-RS?

I have an XML file that generated by JAXB. what I expected to do is put "Add and Update" operation within single method. "Add" operation works to append new entry/element but failed to update the ...
0
votes
0answers
87 views

JAX-RS Form Validation -Highlight input text field and display validation message

I have a sample CRUD application, The application used is a Wine Cellar app. You can search for wines, add a wine to your cellar, update and delete wines. I got it from RESTful services with jQuery ...
1
vote
2answers
101 views

Basic JAX-RS servlet in OSGi 4.2 environment

What is the simplest recipe to create a basic JAX-RS environment in an OSGi 4 container, without resorting to heavyweight solutions like Apache CXF. Although it seems to me that registering a Jersey ...
0
votes
1answer
305 views

Java web service returning soap or json

I need to create web service in Java with method which will be returning some object in SOAP or JSON format. The format depends on how the method is invoked. For example: ...
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 ...
0
votes
1answer
33 views

JAX-RS URI matching using regex

I defined the following two @PATH in JAX-RS: @Path("{ontoId: [a-zA-Z0-9]+}/{version: [0-9]+}") @GET public String getSomething(){ return "First"; } @Path("{ontoId: [a-zA-Z0-9]+}/{version: ...
2
votes
0answers
128 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/") ...
1
vote
1answer
154 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 = ...
0
votes
1answer
102 views

Unable to nest custom Jersey providers

Jersey throws an exception when I try to reference one custom provider from another. This test case public class NestedProvidersTest extends JerseyTest { public NestedProvidersTest() throws ...
0
votes
0answers
26 views

What is the difference between Jersey DefaultResourceConfig.getClasses() and .getProviderClasses()?

I am able to register my custom provider by calling DefaultResourceConfig.getClasses().add(MyCustomProvider.class). But if I try with .getProviderClasses() the provider isn't found. Which makes me ...
0
votes
1answer
46 views

CXF JAX-RS Client - Avoiding the need to override toString of POJOs

I'm calling the following method from a JAX-RS client. @POST @Consumes("application/json") @Produces("application/json") public Book createBook(Book b); It typically calls b.toString() to marshall ...
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) { ...
3
votes
1answer
101 views

AspectJ & Maven warning: “Advice defined in … has not been applied?”

I'm trying to weave some aspects at compile time into a project that becomes a WAR. The aspects advise classes that are within the same project (though in different packages). I get the warning: ...
0
votes
1answer
104 views

JAX-RS (REST Easy) InMemoryClientExecutor/ClientRequest Exception

I'm trying to use the InMemoryClientExecutor to call services on my local JVM which return javax.ws.rs.core.Response objects. I can get this to work but only by specifying the String type like so: ...
0
votes
1answer
41 views

Java webapps security constraints & custom security providers

I'm creating a restful web service using Resteasy. One thing I need to do is to secure the service using a standard HTTP auth request. The tricky part is that the service is multi-tenant and needs ...
0
votes
0answers
186 views

Upload image to server using POST

I know that there are some similar questions to this one on the site, and I've read most of them. I've also Googled for a solution, but am still having issues. So, in my project I need to catch ...
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
1answer
21 views

Jersey 2 - JAXB

Using Jersey 2 m13-3 in Tomcat 7, I'm trying to post XML and have JAXB automatically unmarshal it. My method signature is something like: @POST @Consumes(MediaType.APPLICATION_XML) @Produces( ...
0
votes
1answer
121 views

Master-Detail relationship using DataGrid and Form widget in Dojo 1.8

I have a Grid that using dojox.data.JsonRestStore as store. I want to edit data by using widget Form (dijit.form.Form). Implement dojo/on instead of dojo.connect for binding the grid and form. here ...
0
votes
0answers
78 views

authentication and authorization design in RESTful web application

I have an web application built using RESTful services (JAX-RS). There are REST calls, and simple JSPs with js files to handle data. Now I want to implement authentication and authorization in ...
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"}) ...
1
vote
2answers
100 views

Download an excel file generated from a query to the datbase

I am looking for the possibility of creating an excel file from a query that a user may generate on our database, so that the user can download it. Currently we have results displaying to the GUI, ...
1
vote
1answer
68 views

JAX-RS return a collection of your custom object?

I have a webservice that uses JAX-RS, JPA and JAXB. I've writen a method that should return a collection of objects from my database. This doesn't happen though. It only return a single item. My ...
1
vote
2answers
97 views

Is there a 'standard' way to use Dependency Injection with Java - specifically with JAXRS Jersey

I have some services that I would like to change from using a factory to using a dependency injection framework. With Java 6+ is there a 'standard' way that this can be achieved without using third ...
2
votes
1answer
266 views

How to get Google Guice working with JaxRS (Jersey)

I have a basic JAXRS service that I can expose easily, but for once I wish to use a dependency injection API and I suspect Google Guice will be one of the best. With this in mind, I have tried to ...
0
votes
1answer
85 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
115 views

Generated WADL for a List of Resources

I am struggling for a couple of days now with the following problem. I searched quite a lot for an answer, here in SO, in jersey mailing lists and the net in general, but weren't able to find answer ...
0
votes
0answers
145 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
45 views

messagebodyreader jersey

I am making a java client for restful webservice and I want to send a string in request body. This is my class. public class params { private String test; public String getTest() { ...
-1
votes
1answer
64 views

Is it possible use jersey with jax-ws in the same project [closed]

Is it possible use jersey(jax-rs) and jax-ws in the same project? I using Jboss.
0
votes
1answer
16 views

JAX-RS : Get an array from url

I try to intercept the parameter from this URL http://myapi.com/myobject?filter[0][name]=location&filter[0][value]=FR&filter[1][name]=type&filter[0][value]=real. How can i declare this ...

1 2 3 4 5 30