I'm trying to get an HTTP URL path that contains plus and percent symbols, bit can't seem to find the way to escape them correctly un the path field for the action. I'm getting blanks on the server side for each % ir + symbol I send. Muy simplest url is something like "tv_light_40%" without the quot. marks, but I get tv_light_40 (no %) on the ser ver.... Anyone can point me what to do? Thanks!
Maybe try setting the escape value to a variable and using that in the path?
Here's what Wikipedia has to say on the subject: Because the percent ("%") character serves as the indicator for percent-encoded octets, it must be percent-encoded as "%25" for that octet to be used as data within a URI.
Source: http://www.wikipedia.org/wiki/Percent-encoding
Try tv_light%2540
Generally, it's best to avoid using the percent sign in your URIs, if possible.