Using HttpClient 3.1, it looks like PostMethod parameters are encoded in the body using the URI scheme of percent encoding the UTF-8 bytes.
The standard that specifies URI encoding is http://www.ietf.org/rfc/rfc3986.txt Does anyone have a pointer that specifies that application/x-www-form-urlencoded should be handled in the same manner? As an example, given a parameter of "q","h\u00e9llo" HttlClient will generate a POST body with q=h%C3%A9llo -Yonik -- View this message in context: http://www.nabble.com/application-x-www-form-urlencoded-standard-tp14464212p14464212.html Sent from the HttpClient-User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
