A JBoss project that provides various frameworks to help build RESTful web services and Java applications
0
votes
0answers
13 views
How to parse XMl in sencha touch
I am getting error while parsing xml which is returned in rest call from sencha
Able to invoke rest service by proxy but getting exception while parsing and the exception is
Uncaught SyntaxError: ...
0
votes
0answers
11 views
It possible in Resteasy to extract the URI mapping to an external, dedicated file?
It possible in Resteasy to extract the URI mapping to an external, dedicated file?
Annotating classes and methods is quick and easy but I would like to have a file that maps the URIs to functions. ...
0
votes
0answers
11 views
resteasy maven proyect with 404 errors
This is my web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
...
0
votes
0answers
27 views
RestEasy client spring integration: can not auto follow redirects
Problem: I can not get RestEasy to automatically follow redirects
I'm using the RestEasy client framework 2.3.4 to consume RESTful JSON services. I'm using the rest easy client spring integration. ...
0
votes
1answer
16 views
Rest reading a long using @QueryParam always returns 0 when using @POST
I send the following ajax call to my JBoss server (using jQuery):
$.ajax({
type: "POST",
url: "http://localhost/services/v1/online/123/abc",
data: {
"status": 100
},
contentType: ...
0
votes
1answer
18 views
Adjusting resteasy.servlet.mapping.prefix inside SpringMVC context
When I used Standalone RESTeasy through org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher I adjusted
<context-param>
...
0
votes
1answer
20 views
Jackson JSON Prefixing
I'm currently using RestEasy(2.3.6) with Jackson(1.9.9) and needing to prefix my JSON arrays with '{} &&' in order to prevent JSON hijacking.
I'm new to Jackson and am having a really hard ...
0
votes
0answers
12 views
Resteasy async API report progress and remaining time/ETA
I have more or less successfully implemented an async POST based on Resteasy's
Asynchronous Job Service
but I find it very short-sighted if I cannot also provide a client with more information on the ...
0
votes
2answers
23 views
Is there a way to use JAX-RS annotated interface with Jersey as the client?
Given that I have an interface which represents my RESET service using
public interface BookResource {
@GET
@Path("/book/isbn/{isbn}/")
@Produces(value = { MediaType.APPLICATION_XML ...
0
votes
1answer
32 views
resteasy not run on tomcat response error code 400 bad request
I'm beginner. I have issue with resteasy and tomcat. My resteasy application run normal on jetty but deploy on tomcat response error code 400 and can not run service.
Here my code:
web.xml :
...
0
votes
1answer
26 views
Resteasy Bean Validation Not Being Invoked
Problem Background
I have a Resteasy service that uses Spring through Resteasy's SpringContextLoaderListener. This is built on Resteasy version 3.0-beta-6.
I would like to use bean validation on ...
0
votes
0answers
17 views
How do I achieve through Jboss Resteasy interceptors?
I am working on the Jboss Resteasy API to implement the REST services on Jboss server.I am new to this area. Can someone help me out here...
There is a Rest Service method with custom ...
0
votes
0answers
13 views
Jboss RestEasy web service connection pooling
Getting error
NoSuchMethodError: org.apache.http.impl.conn.DefaultClientConnectionOperator.(Lorg/apache/http/conn/scheme/SchemeRegistry;Lorg/apache/http/conn/DnsResolver;)
Using ...
0
votes
1answer
12 views
Can I get the ResourceMethodRegistry being used by Resteasy
The ResourceMethodRegistry in Resteasy is used in resolving a HttpRequest to an actual method call for the uri, method, content type, etc in the request. Is the actual populated instance of this ...
0
votes
0answers
22 views
Problems running RESTeasy in Resin: 404 Could not find resource for relative
I have been testing RESTeasy in Resin. I have successfully deployed a HelloWorld sample in Resin, the next step for my testing is test the streaming (upload/download) using RESTeasy there it is the ...
0
votes
0answers
60 views
Why is resteasy.providers still required when using Spring with @Provider annotations?
I have a Resteasy application that uses Spring and contains ContainerRequestFilter and ContainerResponseFilter implementations annotated with @Provider. The application is using version 3.0-beta-6 of ...
1
vote
1answer
24 views
Change name of Resteasy generated <collection> element to something else?
<collection>
<Car>
<Car>
<Car>
</collection>
I would like to change the name of the tag to
I have no idea what I'm using--it's just Jboss 7.1.1 and a standard ...
0
votes
0answers
29 views
deploy jackson json provider in jboss 7
I'm having a hard time deploying my version of jackson and replace the on which ships with jboss 7.1.1. Normally I would have to deploy a file named app.ear/META-INF/jboss-deployment-structure.xml in ...
0
votes
0answers
67 views
@JsonIgnore and @JsonBackReference are being Ignored
I'm working with RestEasy, Jboss 7 and EJB 3.1. I'm creating a RESTful web service that returns data in JSON format.
The problem is that I have a @ManyToOne relationship on one of my entities which ...
0
votes
0answers
14 views
jboss 7.1.1 kitchensink-ear quickstart: which json provider is used by default? Customizing jettison?
I am having a very hard time figuring out what is included inside Jboss 7 and what is not. Step 1 is to figure out whether Jboss 7, which uses RestEasy, is using Jackson or Jettison as its JSON ...
0
votes
0answers
25 views
RESTEasy Exception behavior
My JAX-RS service provides a doLogin service method (resource) which just updates the lastLoggedIn timestamp in data base. In case that the user credentials are wrong, a ...
0
votes
1answer
25 views
how generate x.509 certificate by the Java keytool command-line interface
i am using resteasy encrption for that i have to generate x.509 certificate by the Java keytool command-line interface..
Please help me
Thank you
0
votes
0answers
17 views
Resteasy encryption using jboss
i have made one web service now i want to encrypt that json data using rest easy encryption at server side
in this i generate the certificate by Java keytool command-line interface.
@Path("/All")
...
1
vote
1answer
29 views
Best way to configure the output XML version for jaxb via resteasy on jboss
I have data that I'm serializing that has characters that aren't allowed in xml version 1.0:
<value>this  is not good for 1.0</value>
When RESTEasy serializes this via JAXB it ...
0
votes
0answers
40 views
How do I make sure RESTEasy returns application/json media type unless specified otherwise
I'm working on a RESTEasy + Spring web service which is currently being used by several other applications. The response is in JSON format, but for a new implementation I need a response in XML format ...
0
votes
2answers
45 views
How to write an @Path regular expression to capture these parts of the path with whitespace in JAX-RS?
Given a URI like:
/2013/03%20-%20March/15%20-%20Friday/1AC37325007
I have tried the following and I can't seem to get a match;
...
0
votes
1answer
49 views
Atmosphere broadcaster doesn't seems to work with Resteasy
I have a problem with Atmosphere and Resteasy. After two days of the struggle it's almost working. I can get AtmosphereResource in suspend method, set broadcaster to it and call suspend. But when I ...
0
votes
2answers
69 views
NPE raised by a RESTEasy Exception Mapper
Here's what I'm trying to do, it seems that I'm missing something about the RESTEasy documentation so thank's in advance for helping.
My team decided to ALWAYS return a 200 (ok) status to our REST ...
2
votes
0answers
61 views
How to switch from web.xml based authorization to authorization via annotations in a JAX-RS application
I hava a working (web.xml based) container authentication and authorization. Due to the limitation of <url-pattern> I need to switch to javax.annotation.security annotations. I found out that I ...
0
votes
0answers
33 views
Replace jersey implementation by restEasy?
So somebody gave me some code to generate jasper reports via jasper server, but it uses the jersey library.
When deploying it on Jboss, I've got either "Only one JAX-RS Application Class allowed." ...
0
votes
1answer
25 views
Authenticate against EJB via RESTeasy webservice
I am trying to setup a REST-webservice with RESTeasy that access EJBs that are deployed on a JBoss 7.1.1.
I've been successful in:
Setting up Beans to be accessed via REST
Configuring SSL for the ...
0
votes
1answer
59 views
RESTEasy — “Unexpected element” when unmarshaling JSON?
I am writing a RESTEasy client for Apple's AppStore lookup service, which returns a JSON object representing the results of a query. For my test case the JSON looks like this:
{
"resultCount":1,
...
0
votes
0answers
63 views
RestEasy 2.3.5 Client Issue
I am very new to Rest Easy.
I have recently added RestEasy to my Grails project. It already had some crawler library working. I am getting the below exception and I am not sure what jars etc are ...
-1
votes
0answers
35 views
Configure Resteasy from java
I need to get data from a url using webservices
I am able to get data using firefox,but i need to hit the url from my javacode
My code is like
final RestClientService restClientService = new ...
0
votes
1answer
63 views
How to test the response content-type using SOAP UI
I am new to this SOAP UI .
I got a requirement to test if the response body is not empty .
Can you please tell me how to solve.
My idea was to check the content-length of the response using ...
0
votes
0answers
25 views
ClientRequest object with Proxy Host and Port settings
I am very new to the RestEasy, I want to set the Proxy Host and Port while hitting the some REST full urls but I am not sure how to set these settings.
I am using following methods to create the ...
0
votes
0answers
49 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
2answers
155 views
ZipException: invalid distance too far back error when running app
I have a GWT application which uses Resteasy as backend api/service, the project works properly, but when I moved the project to a different machine and run it I get this error when doing a GWT run:
...
0
votes
0answers
43 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:
...
1
vote
2answers
33 views
TomEE Resteasy JAX-B -> Can not get Nested Object
i'm working on a RestWebService using Resteasy. The basic implementation works fine. Know I tried to return a Complexer- Object through rest...
Actually its pretty easy..I thought...;-) I'm getting a ...
0
votes
1answer
31 views
Sharing cookies between 2 ProxyFactory (RESTEasy)
I am currently training and I'm working on Android application that uses RESTEasy API and I encounter some problem with ProxyFactory.create method (..., ...).
Let me explain it:
I have two REST ...
0
votes
0answers
77 views
How to generate Java client proxy for RESTful service implemented with Spring?
We use Spring to implement REST controller, for example:
@Controller
@RequestMapping("/myservice")
public class MyController {
@RequestMapping(value = "foo", method = RequestMethod.GET)
...
1
vote
2answers
147 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") ...
0
votes
1answer
71 views
Errai-jaxrs - Bad Request
I'm having quite an issue for running Errai-jaxrs with my app I'm getting this error from the GWT Dev Mode:
org.jboss.errai.enterprise.client.jaxrs.api.ResponseException: Bad Request
at ...
0
votes
0answers
34 views
How to debug why RestEasy is not matching a request?
I get a 404 when accessing a URI which should be handled by my RestEasy setup. So, is there a way to debug why it is not matching it?
0
votes
1answer
20 views
How use UrlRewriteFilter to use querystring?
I am trying use UrlRewriteFilter, but, I'm not getting create a rule where I can turn this:
/bookmark-edit/1
in this:
/bookmark-edit.jsp?id=1
Examples are welcome!
Thanks,
Luciano
0
votes
1answer
87 views
RestEasy - Unable to find MessageBodyReader?
I've written a simple RestEasy client proxy to perform an iTunes search. It looks like this:
@Path("/")
public interface AppleAppStoreLookupClient {
/**
* Attempts to lookup an apple app ...
2
votes
1answer
173 views
How to send JSON with umlauts (ü, ö, ä) over RestEASY to my server?
I am trying to send a JSON Object via RestEASY (which uses jackson to encode the String to my pojo) and POST from my Client to my Server.
Both have a pojo called MessageDto.
The Client has the ...
1
vote
1answer
66 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
77 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 ...

