Node.js 对 CUCM 的 SOAP/AXL 请求失败

问题描述 投票:0回答:2

全部,

感谢您花一点时间来查看这个问题。由于我是初学者,任何帮助都会受到赞赏。

我正在尝试使用 Node.js 对 v11.5 Cisco Callmanager 进行 SOAP/AXL 调用。我从这个人的博客复制了代码,其中有一个非常棒的解释:http://blog.darrenparkinson.uk/2014/04/accessing-cisco-administrative-xml-axl.html

我已验证该用户具有 AXL 权限,并且在 CAllmanager 上启用了 AXL 服务。我能够使用 SoapUI 成功地使用相同的凭据对相同的 Callmanager 运行相同的 SOAP/AXL 调用。

但是,当我运行此命令时,我收到 http.599 错误。我有一种奇怪的感觉,这与安全有关,但我无法确定它。

这是我的代码。

var https = require("https");
var authentication = 'username:password';

var headers = {
  'SoapAction':'CUCM:DB ver=11.5',
  'Authorization': 'Basic ' + new Buffer(authentication).toString('base64'),
  'Content-Type': 'text/xml; charset=utf-8'
}

var soapBody = new Buffer('<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:axl="http://www.cisco.com/AXL/API/11.5">' +
'<soapenv:Header/>' +
  '<soapenv:Body>' +
   '<ns:listCss sequence="?">' +
      '<searchCriteria>' +
         '<name>%</name>' +
      '</searchCriteria>' +
      '<returnedTags uuid="?">' +
         '<name>?</name>' +
         '<description>?</description>' +
         '<clause>?</clause>' +
      '</returnedTags>' +
   '</ns:listCss>' +
'</soapenv:Body>' +
'</soapenv:Envelope>');


var options = {
  host: '192.168.204.10',     // The IP Address of the Communications Manager Server
  port: 8443,                 // Clearly port 443 for SSL -- I think it's the default so could be removed
  path: '/axl/',              // This is the URL for accessing axl on the server
  method: 'POST',             // AXL Requires POST messages
  headers: headers,           // using the headers we specified earlier
  rejectUnauthorized: false   // required to accept self-signed certificate
};

// Doesn't seem to need this line, but it might be useful anyway for pooling?
options.agent = new https.Agent(options);

var req = https.request(options, function(res) {
  console.log("status code = ", res.statusCode);
  console.log("headers = " , res.headers);
  res.setEncoding('utf8');
  res.on('data', function(d) {
    console.log("Got Data: " + d);
  });
});

req.write(soapBody);
req.end();
req.on('error', function(e) {
  console.error(e);
});
javascript node.js soap cisco-axl cucm
2个回答
3
投票

我能够通过进行以下两项更改来使您的代码正常工作:

  • 第 5 行,AXL 对 SOAPAction 值的格式很挑剔:

    'SOAPAction':'"CUCM:DB ver=11.5 listCss"',

  • 第 10 行,信封中定义的 XML 命名空间('axl')与请求中使用的命名空间('ns')不一致

    var soapBody = new Buffer('<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.5">' +


-6
投票

☎使用 Python Pandas 的思科 CUCM 自动化(批量配置)☎

🖱 课程链接(附折扣码) https://shasoft.thinkific.com/courses/cisco-callmanager-cucm-automation-with-python

🎦 5.5 小时的点播视频(带字幕) 💾 可下载的示例 Python 代码 🔔 终身访问权限

https://www.youtube.com/watch?v=Y7-3jXY-2cc&t=3s https://www.youtube.com/watch?v=HOp45FLHxrY

© www.soinside.com 2019 - 2024. All rights reserved.