Hello billy,
sParm3 becomes "value3/afile/log_test.txt"
I've just tested and it seems to work properly, I don't receive extra
characters...
Also, how can I pass special characters? like:
http://localhost:3000/v1?parm1=value1/ ? ;
\\&'value1b&parm2=value2&parm3=value3"
I found spaces, ";" can be passed but not "&" (naturally). I have tried
converting them to the usual meta charectars such as %20, %10 but they don't
work
For sure, you can. You can use encoded characters, for example if I send
"http://localhost:8182/essai?parm1=value1&parm2=value2&parm3=value3%26value4",
I get 3 parameters :
- parm1=> value1
- parm2 => value2
- parm3 => value3&value4
I've made my tests with a standalone restlet application.
best regards,
Thierry Boileau