-
Bug
-
Resolution: Done
-
Major
-
2.3.2.Final, 2.3.4.Final
-
None
URL: ".../blah%20blah;param=A%20B/..."
when sending the above encoded url to something like:
public Response blah(@PathParam("seg") PathSegment seg)
{...}I get:
seg.getPath(); -> "blah%20blah"
set.getMatrixParameters().getFirst("param"); -> "A%20B"
adding @Encoded like:
public Response blah(@PathParam("seg") @Encoded PathSegment seg) {...}
I get:
seg.getPath(); -> "blah blah"
set.getMatrixParameters().getFirst("param"); -> "A B"
shouldn't it be the other way around ?
Sorry if I am mistaken here.