Skip to content

Instantly share code, notes, and snippets.

@bdunnette
Last active December 28, 2015 07:59
Show Gist options
  • Save bdunnette/7468739 to your computer and use it in GitHub Desktop.
Save bdunnette/7468739 to your computer and use it in GitHub Desktop.
var soap = require('soap');
var url = 'http://gleason.ahc.umn.edu:86/Aperio.Image/Image.aspx?method=wsdl';
var args = {name: 'value'};
soap.createClient(url, function(err, client) {
console.log(err);
console.log(client);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment