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=39252>. 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=39252 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2006-04-13 15:25 ------- Hi, Thanks for applying the patch, but it seems like it the patch I submitted does not work against the current nightly builds. I had tested it against 2.1.1 release. The following fix I think in the public SampleResult sample(Entry e) should be changed to: // Bug 39252 set SoapSampler sample result from XML data /* SampleResult sampleResult = super.sample(e); sampleResult.setDataType(SampleResult.TEXT); sampleResult.setSamplerData(getXmlData()); return sampleResult; */ HTTPSampleResult result = (HTTPSampleResult)super.sample(e); result.setDataType(SampleResult.TEXT); result.setSamplerData("\n" + getXmlData()); result.setQueryString("\n" + getXmlData()); return result; -- 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]
