Author: pmouawad
Date: Tue Feb 7 06:24:05 2012
New Revision: 1241359
URL: http://svn.apache.org/viewvc?rev=1241359&view=rev
Log:
Bug 52613 - Using Raw Post Body option, text is considered as encoded
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
jmeter/trunk/xdocs/changes.xml
Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java?rev=1241359&r1=1241358&r2=1241359&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
(original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/config/gui/UrlConfigGui.java
Tue Feb 7 06:24:05 2012
@@ -199,7 +199,7 @@ public class UrlConfigGui extends JPanel
* On retrival, CRLF is converted back to LF for storage in the text field.
* See
*/
- HTTPArgument arg = new HTTPArgument("", text.replaceAll("\n","\r\n"), true);
+ HTTPArgument arg = new HTTPArgument("", text.replaceAll("\n","\r\n"), false);
arg.setAlwaysEncoded(false);
args.addArgument(arg);
} else {
Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1241359&r1=1241358&r2=1241359&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml (original)
+++ jmeter/trunk/xdocs/changes.xml Tue Feb 7 06:24:05 2012
@@ -67,6 +67,7 @@ or a Debug Sampler with all fields set t
<h3>HTTP Samplers and Proxy</h3>
<ul>
+<li>Bug 52613 - Using Raw Post Body option, text gets encoded</li>
</ul>
<h3>Other Samplers</h3>
|