Запрос SOAP/AXL к CUCM терпит неудачу с Node.js
Все,
Спасибо, что нашли время, чтобы проверить этот вопрос. Любая помощь ценится как я начинающий.
Я пытаюсь работать с Node.js, чтобы сделать вызов SOAP/AXL к Cisco Callmanager v11.5. Я скопировал код из этого блога, в котором есть действительно классное объяснение: http://blog.darrenparkinson.uk/2014/04/accessing-cisco-administrative-xml-axl.html
Я проверил, что у пользователя есть разрешения AXL и что служба AXL включена в CAllmanager. Я могу успешно выполнить один и тот же вызов SOAP/AXL для того же Callmanager с теми же учетными данными, успешно используя SoapUI.
Однако, когда я запускаю это, я получаю ошибку 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);
});
1 ответ
Я смог заставить ваш код работать, внеся следующие два изменения:
В строке 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">' +