I have
@PUT
@Path("{id}")
public Response modify(@PathParam("id") Integer id,
@QueryParam("user") String user, @QueryParam("time") Date time) {....
I am trying to use RestClient to call this web service (the above is actually a cut down version of what I have)
When I call
..../123?user=user1
I hit the web service. As soon as I add time I get a 403 Forbidden message
..../123?user=user1&time=2013-09-10T20:00:00Z
Even if I pass nothing into the time query parameter I get the 403.
Is there anything difference about passing the java dates?
Thank in advance