mirror of https://github.com/apache/jmeter.git
Bug 39827 - SOAP Sampler content length for files
git-svn-id: https://svn.apache.org/repos/asf/jakarta/jmeter/branches/rel-2-2@504365 13f79535-47bb-0310-9956-ffa450edef68
Former-commit-id: 83e88acd77
This commit is contained in:
parent
ee6d550b40
commit
9af59ffe83
|
|
@ -78,6 +78,7 @@ jmeterthread.reversePostProcessors=true
|
||||||
<li>Bug 39887 - jmeter.util.SSLManager: Couldn't load keystore error message</li>
|
<li>Bug 39887 - jmeter.util.SSLManager: Couldn't load keystore error message</li>
|
||||||
<li>Bug 41543 - exception when webserver returns "500 Internal Server Error" and content-length is 0</li>
|
<li>Bug 41543 - exception when webserver returns "500 Internal Server Error" and content-length is 0</li>
|
||||||
<li>Bug 41416 - don't use chunked input for text-box input in SOAP-RPC sampler</li>
|
<li>Bug 41416 - don't use chunked input for text-box input in SOAP-RPC sampler</li>
|
||||||
|
<li>Bug 39827 - SOAP Sampler content length for files</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Version 2.2</h3>
|
<h3>Version 2.2</h3>
|
||||||
|
|
|
||||||
|
|
@ -278,6 +278,13 @@ If a SOAP action is specified, that will override any SOAPaction in the HeaderMa
|
||||||
The primary difference between the soap sampler and
|
The primary difference between the soap sampler and
|
||||||
webservice sampler, is the soap sampler uses raw post and does not require conformance to
|
webservice sampler, is the soap sampler uses raw post and does not require conformance to
|
||||||
XML.</p>
|
XML.</p>
|
||||||
|
<note>For versions of JMeter later than 2.2, the sampler no longer uses chunked encoding by default.<br/>
|
||||||
|
For screen input, it now always uses the size of the data.<br/>
|
||||||
|
File input uses the file length as determined by Java.<br/>
|
||||||
|
On some OSes this may not work for all files, in which case add a child Header Manager
|
||||||
|
with Content-Length set to the actual length of the file.<br/>
|
||||||
|
Or set Content-Length to -1 to force chunked encoding.
|
||||||
|
</note>
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue