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