|
From: Jason H. <ja...@gm...> - 2013-06-20 15:22:20
|
Hi,
I'm using RestEasy 2.3.5 and we have a situation where the parameter has a
forward slash. So I had to encode it and pass it in the URL on a POST.
The REST service looks something like this:
@POST
@Path("car/{carId}/manufacturers")
@Consumes("application/json")
@Produces("application/json")
public ManufacturerResponse findManufacturers(@PathParam("carId") @Encoded
String carId);
I get a 400 response, it cannot find resource. When I strip out the
forward slash in the parameter it works. So @Encoded is not working. Is
this a bug with the API ?
Jason Hall
|