Closed elankeeran closed 7 years ago
I believe, but am not sure, that sec
on line 99 should actually be secConfig
which is set on line 80 to the security settings (var secConfig = self.settings.security || self.settings;
)
@mschmidt712 yes you're correct I have changed according to your comment let me write some unit test for ClientSSL and give you the pull request.
Security enables throws 'pfx' of null
from soap-connector.js:100:20.
To enable security
in soap-connector.js line no 79
var sec = null;
and line no 100 check forif (sec.pfx) {}
so its throws error.line no 79 need to changes as
var sec = {};
I fixed the issue, I will give the pull request