From c56f437fed4a49117bc419a4a9c0f0b36522d62e Mon Sep 17 00:00:00 2001 From: jgallego Date: Mon, 10 Apr 2017 11:52:16 +0200 Subject: [PATCH] getSupply basic --- .gitignore | 2 +- soapClient.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6da04de..36420af 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ node_modules -config.js \ No newline at end of file +config.json \ No newline at end of file diff --git a/soapClient.js b/soapClient.js index 7d589ee..0e0504e 100644 --- a/soapClient.js +++ b/soapClient.js @@ -2,12 +2,11 @@ var querystring = require("querystring"); var xml2js = require('xml2js'); var soap = require('soap'); var getXml = require('./getXml'); -var credential = require('./credential'); +var config = require('./config.json'); function soapClient(xmlFile){ - var url = 'http://services2-acc.floraholland.com/CommercialCustomer/CommercialCustomer_1p5.svc?wsdl'; - var auth = "Basic " + new Buffer(credential.user + ":" + credential.pass).toString("base64"); + var auth = "Basic " + new Buffer(config.user + ":" + config.pass).toString("base64"); var options = { wsdl_headers:{ @@ -17,13 +16,14 @@ function soapClient(xmlFile){ valueKey: '_' }; + soap.createClient(url,options, function(err, client) { if (err) { console.log(err); return; } - client.setSecurity(new soap.BasicAuthSecurity(credential.use,credential.pass)); + client.setSecurity(new soap.BasicAuthSecurity(config.user,config.pass)); console.log('no entra'); getXml.getXml(xmlFile, function(err, data) { if (err) {