I'm having to manually alter lib/services/hps-service.js line 4 from:
wsdl = './wsdl/cert.wsdl',
to:
wsdl = __dirname + '/../../wsdl/cert.wsdl',
in order to get it to use the correct path when it runs soap.createClient(wsdl.... I know this is brute forcing the path, but this was only an attempt to get it working quickly and see wha the issue was. Any ideas why my Node.js (0.12) isn't resolving the path properly?
I'm having to manually alter
lib/services/hps-service.js
line 4 from:to:
in order to get it to use the correct path when it runs
soap.createClient(wsdl...
. I know this is brute forcing the path, but this was only an attempt to get it working quickly and see wha the issue was. Any ideas why my Node.js (0.12) isn't resolving the path properly?