Craig Walls wrote:
Honestly...I have no idea how to do that. But at the same time, I have no idea why you'd want to. I'm not saying that there's not a valid reason..but I'd be interested in knowing what that reason is. Help me understand.
Let me try to explain

.
I am using REST Urls in the controller. But there is the possibility that the search term contains the "/" character. And I thought that encoding the URL should be enough for the server to match the url, and after that, URLdecode the searchterm in the appropriate method. But the problem as I described in my previous post is that the URL decoding occurs before the URL matching.
I found two solutions but none of them are optimal for me:
- use a "special" character to replace the "/" in the client and later on, do the opposite in the server
- do not use REST URLs
Any new ideas on this?
Thanks