Re: [Resteasy-users] Manually Unmarshalling Form Data

2012-08-29 Thread Bill Burke
On 7/5/2012 6:50 PM, Cody Lerum wrote: > I'm currently using the @Form functionality to handle the > unmarshalling of form data sent via a cross-domain ajax post > > @Path("/add") > @POST > @Produces("application/json") > @Consumes("application/x-www-form-urlencoded") > public Response

Re: [Resteasy-users] Manually Unmarshalling Form Data

2012-07-11 Thread Cody Lerum
Safe to assume this would be a feature request? On Thu, Jul 5, 2012 at 4:50 PM, Cody Lerum wrote: > I'm currently using the @Form functionality to handle the > unmarshalling of form data sent via a cross-domain ajax post > > @Path("/add") > @POST > @Produces("application/json") > @Consumes("a

[Resteasy-users] Manually Unmarshalling Form Data

2012-07-05 Thread Cody Lerum
I'm currently using the @Form functionality to handle the unmarshalling of form data sent via a cross-domain ajax post @Path("/add") @POST @Produces("application/json") @Consumes("application/x-www-form-urlencoded") public Response add(@Form MyForm form) { ... } This works great except for w