|
Problem |
SRVE0133E: An error occurred while parsing parameters.
java.lang.IllegalArgumentException: Unable to parse query string name or
value [00649085448500Z85448509110%+VALOR |
|
Cause |
Incorrect use of % escape character in the request
parameter.
Error SRVE0133E is issued when trying to send the percent (%)
character as a part of a request parameter. If the character is sent as a
string in stand-alone Java™ programs, the SRVE0133E error will occur.
|
|
Solution |
RFC 2396 specified the % character is to be used as
an escape character. The percent character is always reserved as an escape
indicator, and it must be escaped as %25 to be used as data within
a URI.
Refer to section 2.4.2, "When to Escape and Unescape," of RFC for details:
http://www.faqs.org/rfcs/rfc2396.html |
|
|