You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a body is sent with multipart-form-dara content type, we were using the default content type when adding the multipart string to the actual MultipartEntity object. This default content type is plain/text with ISO_8859_1 encoding charset. The fix was to enforce using StandarCharsets.UTF_8.
* #124: Unicode support for execute-request.
When a body is sent with multipart-form-dara content type, we were using the default content type when adding the multipart string to the actual MultipartEntity object. This default content type is plain/text with ISO_8859_1 encoding charset. The fix was to enforce using StandarCharsets.UTF_8.
Bug Report
WDK's
execute-request
is not unicode compatible and transforms unicode characters to question marks in theoutputs
object returned.Steps to Reproduce:
Expected Result:
Hello こんにちは世界
Hello こんにちは世界
Actual Result:
Hello ???????
Hello ???????
Environment:
WDK 1.1.0
The text was updated successfully, but these errors were encountered: