[Resteasy-users] Query on resteasy Interceptor

2013-01-04 Thread ignou_mca
Hi folks, I am working on a poc using resteasy framework and resteasy's MessageBodyWriterInterceptor the resource looks like this @GET @Path("/{id}") public Response getUserDetails(@PathParam("id") String id); The business logic is implemented using a stateless ejb below is the

[Resteasy-users] Passing non-primitive parameter for get in QueryParam

2013-02-20 Thread ignou_mca
Hi there, Can you please let me know if I can pass user defined object for a GET request on the query params using resteasy ?? example :-- @GET public Response getUsers(@QueryParam("query") String query,@QueryParam("Userfilter") UserFilter userfilter); Thanks --

[Resteasy-users] Help on RESTEASY

2013-12-19 Thread ignou_mca
Hi Team, I am working on a rest application on which I have model for the following objects customers ,accounts and products. User can access the details of customers,accounts and products using the following uri. [1] GET http://localhost:8080/customers [2] GET http://localhost:8080/accounts [

[Resteasy-users] Help on RESTEASY

2013-12-19 Thread ignou_mca
Hi Team, I am working on a rest application on which I have model for the following objects customers ,accounts and products. User can access the details of customers,accounts and products using the following uri. [1] GET http://localhost:8080/customers [2] GET http://localhost:8080/accounts [

Re: [Resteasy-users] Help on RESTEASY

2013-12-19 Thread ignou_mca
ve > Details         return details;    } > } > > > -- > William Antônio Siqueira > Java Support Analyst > http://fxapps.blogspot.comhttp://www.williamantonio.wordpress.com > http://williamprogrammer.com > > 2013/12/19 ignou_mca > Hi Team, >    I am working

Re: [Resteasy-users] Help on RESTEASY

2013-12-19 Thread ignou_mca
ntonio.wordpress.com > http://williamprogrammer.com > > 2013/12/19 ignou_mca > Hi william, >   Thanks for your response, Sorry for missing out the application context name > from the URI but my main question was I don't want to create the Details > bean > but want the re

[Resteasy-users] How to remove headers from resteasy Response

2014-06-24 Thread ignou_mca
Hi Team, On one of my application I don't want the headers Pragma and Cache- Control but these headers are always coming in Response as below Pragma: No-cache Cache-Control: no-cache How I can remove those? Thanks BBSR