Created to forget the configuration, based on SOAP library
npm i soap-easy
import {SoapClient} from "soap-easy";
...
public someSoap() {
const soap = new SoapClient("WSDL_URL");
const query = {
param1: 1234,
};
const result = soap.callSerice("serviceFunction", query);
}
See on GITHUB
See on NPM