1. How to develop authentication with resteasy? stackoverflow.comI'm making small web service(1) and I decided to use resteasy to make it. But I need to know what would be best practise to develop authentication with resteasy. And what ... |
2. ExceptionMapper issue in RESTEasy stackoverflow.comSo in my JAXRS application, I have 2 ExceptionMapper registered as @Provider
When my application throws a new "MyCustomRuntimeException", the exception is ... |
3. Rest Easy Client Framework value lost after unmarshaling stackoverflow.comYesterday I tried to use the client side of the RestEasy framework. The interface has a method:
and the call to some (Jersey) rest service looks like:
|
4. File upload in Resteasy stackoverflow.comHow to upload files using RESTEasy framework ? |
5. RestEasy @Path Question with regular expression stackoverflow.comIs it possible to define path with optional path variables. like the uri below: /app/make/{make}/model/{model}/year/{year}/mileage/{mileage}/fuelType/{fuelType}/maxPrice/{maxprice}/transmission/{transmission}/engineSize/{engineSize} URI may be composed of any 0 or more combinations of the parameters? Is there a way to tell ... |
6. JAX-RS implementation of link/element expansion? stackoverflow.comWhile 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 ... |
7. RestEASY Interceptor Not Being Called stackoverflow.comI've created a RestEASY Interceptor to allow me to set header values on the HTTP response after my webservice call has completed. My code looks like this...
|
8. How enable JSONP in RESTEasy? stackoverflow.comTitle 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 ... |
9. Using Rest for Image File Upload in RESTEasy stackoverflow.comI need to build a REST web service that will need to accept the following. Any help getting started would be greatly appreciated. I'm using RESTEasy 2.1.GA. -accepts a ... |
10. Create Rest Web Service to receive an Image stackoverflow.comHow would you design a REST based web service that receives an image file in the form of an |
11. Use REST client to call multipart/form-data Rest web service stackoverflow.comI 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 ... |
12. Testing @MultipartForm RestEasy Rest Based Web Service stackoverflow.comDoes anyone know how to test the below @MultipartForm RestEasy Webservice? I'm unsure of how to setup the request to the below service, any ideas?
|
13. Timeout webservice call from client side stackoverflow.comI'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 ... |
14. How do I satisfy void return warning in a restful java service stackoverflow.comJava Code:
|
15. How do I change the REST context generated by enunciate? stackoverflow.comI have the following annotation in my RESTEasy code:
Enunciate generates a "Mount Point" in the documentation as:
I have tried using the following in my enunciate.xml, to override the "/rest" context:
|
16. NoMessageBodyWriterFoundFailure at sending ByteArrayOutputStream through REST service stackoverflow.comI have to send a ByteArrayOutputStream through a rest service, and I got this exception:
|
17. Need help with generating links for REST clients (HATEOAS) stackoverflow.comI am working on developing a JAX-RS webservice using RestEasy 2.2.2 to be deployed on Tomcat 7. The webservice returns JSON (via Jackson) to the clients. I got it working so ... |
18. Resteasy/JAX-RS URL Encoding @PATH stackoverflow.comI am trying to build a client for a restful webservice with Resteasy. The issue is with my client code(below)
|
19. Exclude attribute in @BadgerFish in RESTEasy stackoverflow.comI am going to make one WebApplication which is RESTful. I am using RESTEasy API for that. I am using @BadgerFish annotation for mapping with POJO in POST request. But ... |
20. JAX-RS + RESTEasy service return JSON String without double quote stackoverflow.comI'm new to JAX-RS + RESTEasy What is impeding me is that the service return the JSON String without double quotes.
|
21. openid with resteasy restful services in java stackoverflow.comi am using java resteasy API for restful services in my application
i wont to include openid in my restful application |
22. Resteasy - import javax.ws.rs.Consumes cannot be resolved stackoverflow.comHi I am working with a rest api using Resteasy, simple printMessage samples work however I am getting error with this code:
Error: import javax.ws.rs.Consumes cannot ... |
23. Return File From Resteasy Server stackoverflow.comHi I wantt to retun a file from a resteasy server. For this puspose, I a have a link at client side which is calling a rest service with ajax.I want ... |
24. How can I override the decisions made during JAX-RS Content Negotiation? stackoverflow.comI'm using RESTEasy 2.2.1.GA as my JAX-RS implementation to create a client to connect to a third party service provider. (Education.com's REST API if it matters) To make sure I haven't missed ... |
25. How does RestEasy YAML support work? stackoverflow.comI've managed to configure RESTEasy to use YAML, or I think I've done that. After struggling with the documentation, thanks to help from the mail lists, I've included the right dependencies ... |
26. Is there a good BrowserCache implementation for RESTEasy? (better than LightweightBrowserCache) stackoverflow.comWe're using the |