5

我目前正在尝试使用node-soap ( https://github.com/milewise/node-soap ) 来调用 Authorize.net 的 SOAP 服务器。但是,我似乎无法让我的客户端代码传递正确的参数。我知道该函数正在调用服务器,因为我收到了服务器错误响应。

当我检查 WSDL 时,我注意到服务器调用需要 ComplexType 参数。有没有办法创建我需要的 ComplexTypes 或者我可以只使用 Javascript 对象?这是我当前的代码:

  var soap = require('soap');

  var url = 'https://api.authorize.net/soap/v1/Service.asmx?WSDL';

  soap.createClient(url, function(err, client) {

  var args = {
      merchantAuthentication: {
        name: '285tUPuS',
        transactionKey: '58JKJ4T95uee75wd'
      }
  };

  client.Service.ServiceSoap12.GetTransactionDetails(args, 
      function(err, result) {

          if (err) {
            console.log(err);
          } else {
            console.log(result.GetTransactionDetailsResult[0].messages);
          }
      });

});

4

1 回答 1

1

node-soap 模块在将事务发送到服务器之前将您的 JavaScript 对象转换为 XML。它将请求包装在 wsdl 概述的 xml 元素中。这是传递您提供的对象时 node-soap 可能产生的示例(重要的是要注意外部元素是由 node-soap 模块根据 wsdl 创建的):

此示例将 wsdl 用于 Cyber​​Source API

<data:requestMessage xmlns:data="urn:schemas-cybersource-com:transaction-data-1.93" xmlns="urn:schemas-cybersource-com:transaction-data-1.93">

  <data:merchantAuthentication>
    <data:name>285tUPuS</data:name>
    <data:transactionKey>58JKJ4T95uee75wd</data:transactionKey>
  </data:merchantAuthentication>

</data:requestMessage>

另外,我不确切知道 Authorize.net api 是如何工作的,但听起来您可能想在必要时使用用户名令牌身份验证进行检查:

client.setSecurity(new soap.WSSecurity('username’, ‘password’));
于 2013-11-07T19:08:25.283 回答