https://bz.apache.org/bugzilla/show_bug.cgi?id=63130
--- Comment #2 from Naveen Nandwani <[email protected]> --- Created attachment 36406 --> https://bz.apache.org/bugzilla/attachment.cgi?id=36406&action=edit Fix patch in one function. Cause of Bug: JMeter uses java.net.URLDecoder class for URL encoding. Its drawback : This library can not encode Shift_JIS correctly because of different specific interpretation between Java and IE. Because of browser specification, char code is zipped. Browser encode Japanese text as following. 初期値大阪市 ⇒ %8F%89%8A%FA%92l%91%E5%8D%E3%8Es 初 = %8F%89 期 = %8A%FA 値 = %92l ← % is lack 大 = %91%E5 阪 = %8D%E3 市 = %8Es ← % is lack Solution: JMeter should use org.apache.commons.codec.net.URLCodec class for URL encoding. Refer to attached HTTPArgument.diff file for changes in library. -- You are receiving this mail because: You are the assignee for the bug.
