-
Hi, when I try to proxy a request with UTF-8 encoded body e.g. "á" , then the outgoing request length calculated incorrecty and the end of the body is truncated (by 2 x the number of UTF characters) and the output encoding will be wrong as well Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The proxy deals with bytes (io Streams), not characters (io Readers/Writers). The content length is byte oriented as well. So I'm suspicious there is anything wrong with the proxy. |
Beta Was this translation helpful? Give feedback.
The proxy deals with bytes (io Streams), not characters (io Readers/Writers). The content length is byte oriented as well. So I'm suspicious there is anything wrong with the proxy.