Re: [Resteasy-users] Since upgrading to 2.3.0 I can no longer deserialize a org.codehaus.jettison.json.JSONArray using the ClientRequest

2011-12-20 Thread Bill Burke
It looks like you're using the correct Provider so I don't think any changes to Resteasy code is the problem. The Jackson version was bumped so this may be the issue. Might want to see if reverting to older version of Jackson included in 2.2.1 does the trick. On 12/20/11 3:29 PM, Robert Moska

[Resteasy-users] Since upgrading to 2.3.0 I can no longer deserialize a org.codehaus.jettison.json.JSONArray using the ClientRequest

2011-12-20 Thread Robert Moskal
I have a service method that returns a String: @GET @Path("test/for/{user}/stacked") String testStackedBarChart(@PathParam("user")String userId, @QueryParam("startDate") @DateFormat("-MM-dd")Date startDate, @QueryParam("endDate") @DateFormat("-MM-dd")Date endDate) ; When a call it usin