node-red-contrib-soap
Version:
SOAP Client for Node Red
13 lines • 360 B
JavaScript
module.exports = function (RED) {
function SoapConfig(n) {
RED.nodes.createNode(this, n);
this.wsdl = n.wsdl;
this.auth = n.auth;
this.user = n.user;
this.pass = n.pass;
this.key = n.key;
this.cert = n.cert;
this.token = n.token;
}
RED.nodes.registerType("soap-config", SoapConfig);
}