I have an issue getting an encoded PathParam, Jersey (1.0.1) returns a 404
Seems the same issue existed with matrixParam
(https://jersey.dev.java.net/issues/show_bug.cgi?id=17)
which seems to be indeed fixed. When I double encode the PathParam, then
@GET is called and the
PathParam decoded once.
@GET
@Path("import/{importId}/resource/{resourcePath}")
public ImportElement getResource(@PathParam("importId") Integer importId,
The problem occurs on both Tomcat 6 and Glassfish 3. I have seems a few
mail dealing with this but I'm not
clear about the status, it seems it works for application containers and
not servlet containers (same thing than for MatrixParam bug)
Thanks for your help