We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280fd8d commit 2220ebdCopy full SHA for 2220ebd
src/client.js
@@ -339,9 +339,7 @@ class Client extends Base {
339
var outputBodyDescriptor = operationDescriptor.output.body;
340
var outputHeadersDescriptor = operationDescriptor.output.headers;
341
342
- if (outputBodyDescriptor.elements.length) {
343
- result = obj.Body[outputBodyDescriptor.elements[0].qname.name];
344
- }
+ result = obj.Body[outputBodyDescriptor.qname.name];
345
// RPC/literal response body may contain elements with added suffixes I.E.
346
// 'Response', or 'Output', or 'Out'
347
// This doesn't necessarily equal the ouput message name. See WSDL 1.1 Section 2.4.5
0 commit comments