On 9/13/10 4:20 PM, amsmota wrote:
> Hi guys.
>
> I have a situation where a matrix param can be something like A/B/C wich
> screws
>
> @GET
> @Path("/data/{name}")
> List<?> getData(@PathParam("name")String vame,
> @MatrixParam("params")Map<String, Serializable> params);
>
> and I want to get something like
>
> GET /data/values;date=20/11/2010
>
> As it is now, what this is doing is read date=20 and trey to match the URL
> with /data/values/11/2010
which makes sense to me.
Have you tried encode slashes in date param? It should look like
GET /data/values;date=20%2F11%2F2010