2

我正在使用 nodejs 和 node-soap 与 Web 服务通信。但我似乎无法正确地将参数传递给服务的语法。

文档说我需要发送一个包含字段 uuid 及其值的数组。

这是我从 Web 服务所有者那里获得的 PHP 代码示例

$uuid = "xxxx";

    $param = array("uuid"=>new SoapVar($uuid,
    XSD_STRING,
    "string", "http://www.w3.org/2001/XMLSchema")
    )

这是我在节点服务器中使用的代码

 function getSoapResponse()
{
    var soap = require('soap');
      var url = 'http://live.pagoagil.net/soapserver?wsdl';
      var auth = [{'uuid': 'XXXXXXXXX'}];

      soap.createClient(url, function(err, client) {
      client.ListaBancosPSE(auth, function(err, result) 
      {
          console.log(result);
          console.log(err);
      });
  });

有了这个我得到了糟糕的xml错误

var auth = [{'uuid': 'XXXXXXXXX'}];

或者

var auth = [["uuid",key1],XSD_STRING,"string","http://www.w3.org/2001/XMLSchema"];

有了这个我得到响应“用户ID为空”(uuid)

 var auth = {'uuid': 'XXXXXXXXX'};

有什么建议么?

4

3 回答 3

4

最后使用这个答案中的内容并修改soap-node模块中的代码,我能够获得我需要的代码。

我需要这样的东西:

      <auth xsi:type="ns2:Map">
        <item>
          <key xsi:type="xsd:string">uuid</key>
          <value xsi:type="xsd:string">{XXXXXX}</value>
        </item>
      </auth>

所以我用它来创建参数:

var arrayToSend= 
{auth :
    [  
        {   'attributes' : {'xsi:type':"ns2:Map"}, 
            'item':  
                [
                    {'key' :
                        {'attributes' : 
                            { 'xsi:type': 'xsd:string'},
                            $value: 'uuid'
                        }
                    },
                    {'value' :
                        {'attributes' : 
                            { 'xsi:type': 'xsd:string'},
                            $value: uuid
                        }
                    }
                ]
        }   

    ]
};

并像这样发送它:

soap.createClient(url, myFunction);


    function myFunction(err, client) 
    {
      client.ListaBancosPSE(arrayToSend,function(err, result) 
      {
          console.log('\n' + result);
      });
    }

然后棘手的部分是修改,wsd.js所以每次我使用和数组时它都没有添加额外的标签。我去了第 1584 行并为此更改了 if:

    if (Array.isArray(obj)) 
  {
      var arrayAttr = self.processAttributes(obj[0]),
          correctOuterNamespace = parentNamespace || ns; //using the parent namespace if given
      parts.push(['<', correctOuterNamespace, name, arrayAttr, xmlnsAttrib, '>'].join(''));
    for (var i = 0, item; item = obj[i]; i++) 
    {

      parts.push(self.objectToXML(item, name, namespace, xmlns, false, null, parameterTypeObject, ancXmlns));
    }
      parts.push(['</', correctOuterNamespace, name, '>'].join(''));
  } 

基本上现在它不会在每个迭代中推送打开和关闭标签,而是仅在整个循环之前和之后推送。

我还需要为消息的 xlmns 添加定义。Client.js:186

xml = "<soap:Envelope " +
    "xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" " +
    'xmlns:xsd="http://www.w3.org/2001/XMLSchema"' +
    'xmlns:ns2="http://xml.apache.org/xml-soap"' +
    "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " +

希望这对使用这个库并处于这种情况的人有所帮助。

于 2015-03-09T00:02:49.530 回答
3

我能为您做的不多,但这里有一些提示可以帮助您入门。

  1. 使用 client.describe() 查看服务如何期望参数。

您尝试访问的服务具有以下结构:

{ App_SoapService: 
    { App_SoapPort: 
        { Autorizar: [Object],
          AutorizarAdvance: [Object],
          AutorizarIac: [Object],
          ListaBancosPSE: [Object],
          AutorizarPSE: [Object],
          AutorizarTuya: [Object],
          AutorizarBotonCredibanco: [Object],
          FinalizarPSE: [Object],
          FinalizarTuya: [Object],
          ConsultarReferencia: [Object] } } }

仔细查看 ListaBancosPSE 提供的具体方法:

{input: { auth: 'soap-enc:Array' },
 output: { return: 'soap-enc:Array' }}

我试过这个:

var soap = require('soap');

function getSoapResponse(url, auth) {
    soap.createClient(url, function(err, client) {
        console.log(client.describe());
        console.log(client.describe().App_SoapService.App_SoapPort.ListaBancosPSE);

        client.ListaBancosPSE(auth, function(err, result) {
            console.log(JSON.stringify(result));
            console.log(err);
        });
    });
}
getSoapResponse('http://live.pagoagil.net/soapserver?wsdl', {'soap-enc:Array' : {'uuid': 'XXXXXXXXX'}});

响应是相同的“Negada, Error nombre de usuario vacio, No se pudo autenticar en pagoagil.net。”。

您的下一步将是确定服务所期望的消息是什么。

可能是这样的:

<tns:ListaBancosPSE><uuid>XXXXXXXXX</uuid></tns:ListaBancosPSE>

或者

<tns:ListaBancosPSE><soap-enc:Array><uuid>XXXXXXXXX</uuid></soap-enc:Array></tns:ListaBancosPSE>

一旦你知道了,你只需要在你安装的 node-soap 包中添加一个 console.log,所以去你安装 node_modules 的地方并打开文件

node_modules/soap/lib/client.js

在第 187 行添加一个 console.log,就在设置消息之后

console.log("Message! ", message);

这将显示消息,它应该为您提供足够的信息来确定参数的格式。

于 2015-03-05T00:06:14.647 回答
1

已经过去了几年,但我有另一个解决这个问题的建议。如果您(像我一样)没有提供所有命名空间的东西(由于缺乏理解),您可以直接将序列化的 XML 字符串放入如下值:

var objToSend = {
  someString: 'stringVal',
  arrayContent: {
    $xml: '<item>val1</item><item>val2</item>'
  }
}
于 2020-07-08T12:17:23.407 回答