Tagged Questions

RESTEasy is the JBoss implementation of the JAX-RS spec

learn more… | top users | synonyms

7
votes
4answers
252 views

REST HTTP Authentication - How?

So, I'm developing a REST webservice using RESTeasy and Google App Engine. My question isn't related to GAE, but I mentioned it just in case it matters. It happens that naturally I need to secure my ...
7
votes
1answer
377 views

Root element name in collections returned by RESTEasy

I'm using JAX-RS via RestEasy in JBoss AS 6. When my JAX-RS resource returns a collection of items (e.g. via a List), RESTEasy always uses the name collection as the root element. E.g. ...
6
votes
4answers
160 views

RESTeasy/JAXB; How do I avoid a namespace being added to an Element in an <any> tag? (List<Element> in JAXB)

I'm going to simplify my classes and output as best I can here, but basically what I'm after is I want to add an org.w3c.dom.Element (representing an atom link in this case) to a JAXB object I'm ...
6
votes
1answer
4k views

How do I do a multipart/form file upload with jax-rs?

(specifically RESTeasy) It would be nice (for a single file) to have a method signature like: public void upload(@FormParam("name") ..., @FormParam("file") file: InputStream) ... doable? or am I ...
5
votes
1answer
360 views

Impossible tech stack? Jboss/Seam/Resteasy/Hibernate/Maven

Hello good people of StackOverflow! I've tried many tutorials on using JBoss Seam and looked at the "Restbay" example in the Seam distro. But I cannot get a working REST web service with the ...
5
votes
2answers
216 views

JAX-RS implementation of link/element expansion?

While reading documentation of Google Data API and Atlassian REST API, I found interesting functionality - link (or title, element expansion) - http://bit.ly/i3rKMw. I would like to implement this ...
5
votes
2answers
3k views

How to choose between Jersey, Apache Wink and JBoss RESTEasy?

I just heard about Apache Wink, and I was wondering what differences it had compared to Jersey or JBoss RESTEasy. What can be done in one that the other two can't? We've been using Jersey for some ...
5
votes
2answers
2k views

unable to find a MessageBodyReader

I have this interface: @Path("inbox") public interface InboxQueryResourceTest { @POST @Path("{membershipExternalId}/query") @Consumes(MediaType.APPLICATION_XML) ...
4
votes
1answer
441 views

Timeout webservice call from client side

I'm calling a webservice using RestEasy Client. One requirement is to abort/timeout the call if it runs for more that 5 seconds. How wupold i achieve this with RestEasy Client? I have only seen server ...
4
votes
1answer
1k views

RESTEasy will not map my Spring bean with custom Spring ContextLoader

RESTEasy 2.0.1GA Java 1.6 Spring 3.0.3 I have tried everything I can, and cannot make head or tail of what's going on. I have a Spring MVC application, however I'd like to have some RESTEasy ...
4
votes
2answers
674 views

Optional @PathParam in Jax-RS

I have a service where the last part of the path is optional, the user can both enter /mypath/ and /mypath/param1/. I tried to use a regular expression to filter the last part of the path: ...
4
votes
1answer
560 views

RESTeasy and Returning to a JSP page with a model

Is there an easy, not using spring, way to have RESTeasy return a jsp or html page with a model? I want to do something similar to the spring ModelAndView where I have a request to say ...
4
votes
1answer
608 views

Advantage of RESTEasy over Apache CXF?

I have Restful web-service implemented using Apache CXF. Since I am going to use JBoss for deployment, I am thinking of moving to RESTEasy as it provides better JBoss integration. What are the ...
3
votes
0answers
74 views

Generating API documentation from RESTEasy Annotations

I have a set of Java classes that are annotated with RESTEasy annotations. What I want is to generate JavaDoc like HTML documentation that takes my API interface and shows how to call the API (eg: ...
3
votes
1answer
214 views

User Login Authentication in RESTEasy java

I want to make user Login Authentication in my web application. I am using RESTEasy restful framwork. I want to do advance login system that will generate token, make an email to user for verification ...
3
votes
2answers
292 views

Jackson: how to treat {type:xx}?

I have the following json: {"resourceWithType": {"parentId":0, "pluginId":0, "pluginName":"Platforms", "resourceId":10001, "resourceName":"snert", "typeId":10057, "typeName":"Mac ...
3
votes
0answers
316 views

Resteasy (JBoss AS 6) validation

I'm looking for a good pattern of providing custom validation of input for Resteasy services. Let's say I've this service: @Local @Path("/example") public interface IExample { public Response ...
3
votes
2answers
989 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 = ...
3
votes
2answers
2k views

Resteasy multipart/data-form file upload on GAE

I'm trying to use resteasy 2.0.1.GA to upload a form with a file in it into GAE application, using the method advised at How do I do a multipart/form file upload with jax-rs? Index.html <form ...
3
votes
1answer
6k views

PersistenceContext EntityManager injection NullPointerException

I have a war containing the following: META-INF/MANIFEST.MF WEB-INF/classes/META-INF/persistence.xml WEB-INF/classes/com/test/service/TestServlet.class ...
3
votes
1answer
322 views

Resteasy service expecting 2 json objects

I have a service that expects 2 objects... Authentication and Client. Both are mapped correctly. I am trying to consume them as Json, but I'm having a hard time doing that. If I specify just one ...
3
votes
1answer
171 views

How to instantiate a Home interface in a Seam Rest service if the Home interface has an User reference?

I am developing my first Seam + Android application and I am facing some new scenarios as expected. Now specifically for this app, I decided not to keep any state because probably 80% to 90% of the ...
2
votes
2answers
99 views

RestEasy + hibernate + JBoss EAP 5.1.1

I am developing a webservice using RestEasy API 2.3.0 GA, hibernate 3.6.3, mysql and trying to deploy on Jboss 5.1.1. It is a maven project and getting deployed successfully. But when I call my ...
2
votes
1answer
80 views

java.lang.IllegalArgumentException: Filter mapping must specify either a <url-pattern> or a <servlet-name>

I've created very simple REST app with next web.xml: <context-param> <param-name>resteasy.scan</param-name> <param-value>true</param-value> </context-param> ...
2
votes
0answers
77 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 ...
2
votes
2answers
179 views

Accessing Jackson Object Mapper in RestEasy

I've been asked to beautify default Jackson JSON coming out of a rest-easy endpoint. I did some research on Jackson and wrote some standalone code to be able to suppress nulls, customize data formats ...
2
votes
1answer
110 views

How to create a MessageBodyWriter to return a custom object as HTML in RestEasy?

I'm using RestEasy together with Spring in Tomcat. I have a simple controller method which I want to use via Ajax (with JSON or XML response) and via a standard browser request (Using HTML as a ...
2
votes
2answers
65 views

multiple JAXB serializations for one class?

i have a Class A that is used as a result for a JAX-RS method. I want to marshal A into xml in two different ways. Is there a way to give resteasy two different mappings to use on my class? ...
2
votes
3answers
169 views

Propagating ThreadLocal to a new Thread fetched from a ExecutorService

I'm running a process in a separate thread with a timeout, using an ExecutorService and a Future (example code here) (the thread "spawning" takes place in a AOP Aspect). Now, the main thread is a ...
2
votes
2answers
46 views

How to invalidate 'other' URIs in case of a PUT request?

A resource can be identified by multiple URIs. e.g. /person/1234 /person/list?fname=John /person/list?lname=Doe all of the above might contain a resource: Person - id: 1234 fname: John lname: Doe ...
2
votes
1answer
93 views

Best practice for adding complex resources to collections?

Imagine a RESTful service that lets players in a game submit commands to the server. The object that denotes this command might be called PlayerCommand and look something like: PlayerCommand: Player ...
2
votes
1answer
358 views

Authentication in Play! and RestEasy

I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I'd like to add some REST API to my ...
2
votes
2answers
205 views

ResteasyProviderFactory exception in Glassfish

I'm having some trouble invoking a RESTful webservice using the Client Framework provided by RESTEasy. When I try to register the ResteasyProviderFactory I got a ClassCastException and nothing more ...
2
votes
2answers
1k views

How enable JSONP in RESTEasy?

Title say about my issue. I need wrap DTO in to a javascript method callback. Currently I return on request JSON. But problem with using this in Ajax because I send GET to other domain. and of course ...
2
votes
0answers
253 views

Mocking digest authentication in RestEasy

I am using RestEasy to develop a REST server and using the mock dispatcher (org.jboss.resteasy.mockMockDispatcherFactory) for testing the service in my unit tests. My service requires digest ...
2
votes
1answer
272 views

Jettison JSON Automatically Changes Data Type

I'm using Resteasy 2.0.1.GA and thusly Resteasy-jettison-provider-1.2.GA and whenever I have a String property that contains all numbers (i.e. String test="1111";), the JSON response will display it ...
2
votes
1answer
2k views

RESTEasy or Jersey

I have a requirement for RESTFul webservices. It is upto my team to decide whether to go with Jersey (or) Restlet (or) RESTEasy or anything else. after omitting other frameworks, we are not able to ...
2
votes
1answer
326 views

Jettison and JAXB Automatically Changes Data Type in JSON Response

I'm using Resteasy 2.0.1.GA and Resteasy-jettison-provider-1.2.GA with JAXB annontations and whenever I have a String property that contains all numbers (i.e. String groupName="1111";), the JSON ...
2
votes
2answers
337 views

Format exception message thrown by Spring security in filter chain

The setup: Resteasy + Spring Security on Tomcat. Data exchanged between client/server is in JSON format. Have exception mappers to return JSON formatted messages when the app throws any exception. ...
2
votes
1answer
2k views

RESTEasy - @Path requiring a full path?

I was messing around with JAX-RS and made an application which calls REST services which produce JSON. I tried Jersey and everything went fine, but I had to switch to RESTEasy as my application needs ...
2
votes
1answer
1k views

Using JAXB to pass subclass instances as superclass

What I have is a set of Java classes (close to 25) representing message types. They all inherit from a Message class which I'd like to be abstract. Each message type adds a few additional fields to ...
2
votes
4answers
4k views

What do you guys think of RestEASY?

So I wrote a sample REST resource that works like a charm in Jersey/Tomcat, but when I take it to RestEASY/Tomcat it blows. I mean really? what happened to working out of the box. Anyway a little ...
2
votes
1answer
729 views

Using an EJB inside a JAX-RS resource class in RestEasy?

I would like to have the following kind of resource class work when deployed under RestEasy in JBoss 6: @Path("Something") public class Foo { @EJB private SomeService service @GET public ...
2
votes
2answers
3k views

RESTEasy - simple string array/collection marshalling

Is there a simple way for marshalling and unmarshalling String[] or List in RESTEasy? My code sample : @GET @Path("/getSomething") @Produces(MediaType.APPLICATION_JSON) public List<String> ...
2
votes
1answer
2k views

RESTEasy client framework authentication credentials

RESTEasy (a JAX-RS implementation) has a nice client framework, eg: ServiceApi client = ProxyFactory.create(ServiceApi.class, baseUri); How do you provide HTTP authentication credentials to this ...
2
votes
1answer
562 views

Using Resteasy with javassist?

I'm trying to use resteasy to serve out some entities fetched by spring-hibernate. I've configured one method which returns a POJO and works as expected: @GET @Path("/test") ...
2
votes
1answer
2k views

JAX-RS interface markup and @Context injection

Consider the following simple RESTEasy (JAX-RS) service: @Path("/example-service") public interface ExampleService { @Path("/ping") @GET public String ping(String message); } I want ...
1
vote
1answer
20 views

Resteasy - GET Method - Passing XML

I am trying to implement GET method in Resteasy. I couldn't use QueryParam because there are many search parameters including a complex type. So I thought of using XML. In the code below, both request ...
1
vote
1answer
19 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 ...
1
vote
2answers
33 views

Resteasy @path with zero or more path parameters

I am using RESTEasy in my API development. My url is http://localhost:8080/project/player/M or http://localhost:8080/project/player it means am pasing {gender} as path param. my problem is how to ...

1 2 3 4 5 6