node-soap icon indicating copy to clipboard operation
node-soap copied to clipboard

A SOAP client and server for node.js.

Results 46 node-soap issues
Sort by recently updated
recently updated
newest added

Currently, if users do this: > const result = await client.MyFunction(args) The result will be equal to an array containing result, rawResponse, soapHeader, rawRequest, mtomAttachments. And if they want just...

Enabling resolving promises on postProcess

There is an issue with appearing of empty soap:Header tag, although decodedHeaders are set to null it's being formed, because of this.security is defined, but this.security.toXML() returns empty string.

The provided WSDL was not serializing the response correctly when returning the XML. Created a request response folder to test the changes that were made and made sure code coverage...

Consider this XSD: ``` ``` I expected DummyList and DummyValues to be returned in List sample response SOAP: ``` Hello ``` The current value being returned. ``` { DummyList: {...

### Allows SchemaElement instance to use import namespace as targetNamespace when the attribute is not set. Prevents the following error message when schema elements do not include `targetNamespace` attribute: >...

When using node-soap to create a soap server, one could prefer to declare and instantiate a class and pass that as the service object (_although the current documentation does instruct...

The preserveWhitespace option is not taken in account if the text only contains spaces. This leads to cases where the returned text should be ' ' but leads to ''.

### Allows overriding the InputMessage "Request" element for custom elements based on args param * Options is optional field for `objectToDocumentXML` function * Replicates `_xml` parameter functionality (sending a custom...