Using Node to call SOAP Web Service over https
问题 I am trying to use node-soap https://github.com/vpulim/node-soap to call a web service but I am having trouble using the module with https . In the code below I am using http and I can see the functions and log a describe() of the About function. (Responses are empty, probably because the WS is setup like that when using http(?)) var soap = require('soap'); var url = "http://XXXXX/service.svc?DocArchiveService/DocArchiveV201409"; var auth = "Basic " + new Buffer("USERXXX" + ":" + "PWYYY")