From: amsmota <amsmota_at_gmail.com>
Date: Mon, 13 Sep 2010 07:44:56 -0700 (PDT)
I did, but it seems the server unencode before doing the path matching.
> 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