Skip to content

Instantly share code, notes, and snippets.

@jason-dark
Created July 20, 2018 22:34
Show Gist options
  • Save jason-dark/2f95b28aa90eaa9e38d821f7cd0a489b to your computer and use it in GitHub Desktop.
Save jason-dark/2f95b28aa90eaa9e38d821f7cd0a489b to your computer and use it in GitHub Desktop.
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
console.log(client.lastRequest); //Prints the request we sent
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment