An x509 http client for node-soap
npm install soap-x509-httpThis module provides an HTTP client for accessing web services that require X.509 certificates.
It's based on node-soap's default HTTP client and relies on ws.js for the signing process.
Install with npm:
``
npm install soap
npm install soap-x509-http
`
new X509HttpClient(requestOptions, singingCredentials); creates a new http client to be used on node-soap.
This example assumes that the web service requires a TLS client certificate. If this is not needed then the first parameter can be left empty.
`
var fs = require('fs');
var soap = require('soap');
var X509HttpClient = require('soap-x509-http');
var myX509Client = new X509HttpClient({
pfx: fs.readFileSync('
passphrase: '
ca: fs.readFileSync('
rejectUnauthorized: false
}, {
key: fs.readFileSync('
});
var wsdl = './WebService.wsdl';
var args = {name: 'value'};
soap.createClient(wsdl, {
httpClient: myX509Client
},
function(err, client) {
client.setEndpoint('
client.MyFunction(args, function(err, result) {
console.log(result);
});
});
``
- node-soap - A SOAP client and server for node.js.
- ws.js - A WS-* client stack for node.js. Written in pure javascript!