DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=18359>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=18359





------- Additional Comments From [EMAIL PROTECTED]  2005-10-06 22:10 -------
Looking into the way URL encoding and decoding should work per the HTTP spec, I
would strongly suggest that this parameter should be defaulted to "false" for
any element in JMeter that will be parsing the HTML response.  Since the browser
URL encodes the form parameters and the server decodes them, and visa-versa the
HTML will always contain the URL decoded values so they do not need to be URL
decoded AGAIN.  Since JMeter is taking the place of the browser, they do need to
be URL encoded when the form is sent but the extra decode is a true bug in
JMeter for elements that parse the HTML response.  Defaulting the value to false
for the URLRewritingModifier corrects this issue for our tests shown below, and
should be done for any other element that parses the HTTP response.

In URLRewritingModifier.modify(HTTPSamplerBase, String) [line: 121]

 sampler.getArguments().removeArgument(getArgumentName()); [line: 129]
 sampler.getArguments().addArgument(new HTTPArgument(getArgumentName(), value,
false)); [line: 130]

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to