Why am I unable to pass '<' character as a parameter in the URL? If I do:
http://localhost:9566/?myVar=2 that is ok
But I cannot do:
http://localhost:9566/?myVar=<foo> Why does this give me an error?
When I URL-encode <foo> I get %3Cfoo%3E.
And when I do http://localhost:9566/?myVar=%3Cfoo%3E, I still get the same error:
