5

我在使用easysoap(https://npmjs.org/package/easysoap)时遇到了一些问题,我找不到太多文档或谈论它的人,所以我希望你们中的一些人能提供帮助:

我正在打一个这样的简单电话:

            var clientParams = {
                           host    : 'somewhere.com',
                           port    : '9001',
                           path    : '/somews.asmx',
                           wsdl    : '/somews.asmx?WSDL'
            };

            var clientOptions = {
                           secure : false 
            };

            //create new soap client
            var SoapClient = new soap.Client(clientParams, clientOptions);
            SoapClient.once('initialized', function() {

                           //successful initialized
                           SoapClient.once('soapMethod', function(data, header) {
                           });

                           console.log('call');

                           SoapClient.call({
                                           'method' : 'Execute',
                                           'params' : {
                                                           'ExecuteXML' : 1
                                           }}, function(attrs, err, responseArray, header){
                                           }
                           );
            });

            //initialize soap client
            SoapClient.init();  

问题是我收到回复说我无权提出请求。但是,如果我在浏览器http://somewhere.com:9001/somews.asmx中手动尝试相同的 url,它确实有效。

你知道我做错了什么吗?

非常感谢提前。

如果你们中的任何人知道任何其他节点模块来实现这一点,请告诉我。我尝试使用 node-soap,但迷失在所有所需的依赖项中:python、Visual Studio ......你真的需要所有这些来对服务器进行几次肥皂调用???

谢谢

4

2 回答 2

5

对于其他 nodejs 肥皂模块。我目前使用 node-soap 并对它感到满意。您可以在此处找到该项目。

这是我如何使用它的示例。

var soap = require('soap');
//example url
var url = 'http://ws.strikeiron.com/GlobalAddressVerification5?WSDL';

var soapHeader = ''//xml string for header


soap.createClient(url, function(err, client){
  client.addSoapHeader(soapHeader);

  var args = {
    StreetAddressLines: "5322 Otter Lane",
    CountrySpecificLocalityLine: "Middleberge FL 32068",
    Country: "USA"
  };

  client.BasicVerify(args, function(err, result){
   if(err){
     throw err;
   }
   console.log(result);
  });
});
于 2014-02-04T19:18:22.960 回答
0

对我来说,这很有效:

    "use strict";

    var easysoap = require('easysoap');
    var clientParams = {
                   host    : 'http://somewhere.com:9001',
                   path    : '/somews.asmx',
                   wsdl    : '/somews.asmx?WSDL'
    };

    var clientOptions = {
                   secure : false 
    };

    var soapClient = easysoap.createClient(clientParams, clientOptions);

    soapClient.call({'method' : 'Execute',
                     'params' : {
                                  'ExecuteXML' : 1
                    }})
    .then(function (callResponse) {
            console.log(callResponse);
        })
    .catch(function (err) {
        console.log("Got an error making SOAP call: ", err);
    });
于 2016-07-06T11:34:39.277 回答