Skip to content

Instantly share code, notes, and snippets.

@jason-dark
Created July 20, 2018 22:24
Show Gist options
  • Save jason-dark/431bf61679ed19d5fadb4906af6265b2 to your computer and use it in GitHub Desktop.
Save jason-dark/431bf61679ed19d5fadb4906af6265b2 to your computer and use it in GitHub Desktop.
var soap = require('soap');
var wsdl = '/home/user/your-project/xmlfaz.wsdl';
var args = {
_xml:
'<r20:getAdomList>' +
'<servicePass>' +
'<userID>apiuser@domain.com</userID>' +
'<password>apiuserpassword</password>' +
'</servicePass>' +
'<detail>true</detail>' +
'</r20:getAdomList>'
};
soap.createClient(url, function (err, client) {
if (err) console.error(err);
client.getAdomList(args, function (err, result) {
if (err) console.error(err);
console.log(result); // Print the result
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment