It sounds like you encoded the whole URL, rather than just
encoding the values of the query arguments. That won't work, you need to
encode just the query argument values, so that your final URL looks something of
the form:
http://host.domain.com/path/file.html?arg1=Encoded+Value&arg2=Encoded%2FSlash
(*Chris*)
|
- request.getParameter() decode a url incorrectly M. Amin
- Re: request.getParameter() decode a url incorrectly Milt Epstein
- DB Connection and Servlets Chris Pratt
- DB Connection and Servlets Fawaz Ahmad
- Re: DB Connection and Servlets Chris Pratt
- Re: request.getParameter() decode a url incorrectly Galbreath, Mark