Author: sebb
Date: Sat Oct 11 14:14:51 2008
New Revision: 703733
URL: http://svn.apache.org/viewvc?rev=703733&view=rev
Log:
Forgot one of the encoding calls
Modified:
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java
Modified:
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java?rev=703733&r1=703732&r2=703733&view=diff
==============================================================================
---
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java
(original)
+++
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java
Sat Oct 11 14:14:51 2008
@@ -542,7 +542,7 @@
final String contentType =
st.getResponseSOAPContext().getContentType();
result.setContentType(contentType);
result.setEncodingAndType(contentType);
-
result.setResponseData(st.getResponseSOAPContext().toString().getBytes());
+
result.setResponseData(st.getResponseSOAPContext().toString().getBytes(result.getDataEncodingWithDefault()));
}
}
if (st != null) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]