Node soap, consume password protected WSDL
问题 I'm trying to build a SOAP client with Node, I'm using "soap" package (https://www.npmjs.org/package/soap) trying to consume a user/password protected WSDL. I can't find how to pass those credentials before creating the client by "soap.createClient", and of course, I can't retrieve the WSDL if I don't provide the right credentials. I've tried doing: soap.security.WSSecurity('user', 'pass'); and then calling "createClient" but to no avail. Also, I've tried to do it with the node-soap-client,