发送与节点皂阵列的请求(的node.js)(Send a request with arrays i

2019-10-22 03:44发布

我沟通,使用和的NodeJS节点肥皂的Web服务。 但我似乎无法得到正确的语法为参数传递给服务。

文档说我需要与现场的UUID,并将其值发送的数组。

这里是PHP代码我得到了从Web服务所有者的例子

$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'};

有什么建议么?

Answer 1:

没有多少我能为你做,但这里有一些提示,让你开始。

  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'}});

响应是相同的“拒绝,错误空的用户名,不能对pagoagil.net认证。”

为你的下一步将是确定哪些是服务期待的消息。

可能是这样的:

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

要么

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

一旦你知道,你只需要添加在你安装节点皂包的console.log,所以去您安装node_modules其中并打开该文件

node_modules /肥皂/ LIB / client.js

在线路187添加的console.log,该消息已被设置后马上

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

这将显示该消息,应该给你足够的信息来计算出的参数的格式。



Answer 2:

最后用在内容本答案和修改皂节点模块我能够获得我所需要的代码中的代码。

我需要的是这样的:

      <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);
      });
    }

然后棘手的部分是modyfing的wsd.js所以没有添加额外的标签,每次我使用和阵列。 我就去排队1584,改变了;如果此:

    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(''));
  } 

基本上现在它不会推打开和关闭标签在每一个iterarion而只是之前和整个周期之后。

此外,我需要添加的定义为消息的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\" " +

希望这可以帮助使用这个库,在这种情况下是人。



文章来源: Send a request with arrays in Node-soap (node.js)