I believe the encoded slash should work. How does your code look like?
I.e. what are you using to extract the parameter from the URL?
Martin
On 21.6.2011 0:02, Rahul Babbar wrote:
> Hello Jersey world,
>
> I have some URIs of the form /resource;param=value.
>
> It works fine, but if the value contains a '/', it does fail giving a
> 404 error resource not found.
>
> So, the following URI fails /resource;param=M/A.
>
> I tried using /resource;param=M%2FA but it also does not work.
>
> What should be done for pass the appropriate '/' in the parameter?
>
> Thank you
>
> Rahul