是否可以从 NodeJS 访问 Microsoft Dynamics NAV Web 服务?
Is it possible to access Microsoft Dynamics NAV Web service from NodeJS?
我正在使用 node-soap
库创建一个 soap 客户端。
在 NAV 方面,
凭据类型是 Windows
。当我尝试从 NodeJS
访问 NAV Soap Web Service
时,它显示 Error:401
(访问被拒绝)。
这是我在应用程序中使用的代码。
var soap = require("soap");
var url = "http://<url>"; // This is accessible from browser.
soap.createClient(url, function (err, client) {
if (err) { console.log(err); }
else {
console.log(client.describe());
}
});
所以我刚刚通过这个来集成我们的 ERP 软件和 NAV(现在实际上称为 Dynamics365 Business Central),我想我会把我所做的留在这里以帮助人们。所以仅供参考,我是在 NAV 14.0 上做的。
var soap = require('soap');
var url = 'http://localhost:7047/{INSTANCE}/WS/{COMPANY}/Codeunit/{CODEUNITNAME}';
var security = new soap['NTLMSecurity']({
username: NAVUSERNAME,
password: NAVUSERPASSWORD,
domain: DOMAIN',
negotiate: true
});
const wsdl_headers = {}, wsdl_options = {};
security.addHeaders(wsdl_headers);
security.addOptions(wsdl_options);
return soap.createClientAsync(url, { wsdl_headers, wsdl_options })
.then(
(client) => {
client.setSecurity(security)
return client;
}
).then((client) => {
return client.FunctionNameAsync({params});
})
这将验证 wsdl 请求和您尝试访问的 SOAP 服务。当我第一次尝试这个时,我得到了错误 Couldn't find NTLM in the message type2 comming from the server
。这是因为我安装的 NAV 默认关闭了 NTLM 身份验证。我不知道关闭此功能后期望使用哪种身份验证方法。您可以通过服务器管理器启用它:
之后重新启动实例,您的身份验证有望正常工作。希望这对其他人有帮助。
我正在使用 node-soap
库创建一个 soap 客户端。
在 NAV 方面,
凭据类型是 Windows
。当我尝试从 NodeJS
访问 NAV Soap Web Service
时,它显示 Error:401
(访问被拒绝)。
这是我在应用程序中使用的代码。
var soap = require("soap");
var url = "http://<url>"; // This is accessible from browser.
soap.createClient(url, function (err, client) {
if (err) { console.log(err); }
else {
console.log(client.describe());
}
});
所以我刚刚通过这个来集成我们的 ERP 软件和 NAV(现在实际上称为 Dynamics365 Business Central),我想我会把我所做的留在这里以帮助人们。所以仅供参考,我是在 NAV 14.0 上做的。
var soap = require('soap');
var url = 'http://localhost:7047/{INSTANCE}/WS/{COMPANY}/Codeunit/{CODEUNITNAME}';
var security = new soap['NTLMSecurity']({
username: NAVUSERNAME,
password: NAVUSERPASSWORD,
domain: DOMAIN',
negotiate: true
});
const wsdl_headers = {}, wsdl_options = {};
security.addHeaders(wsdl_headers);
security.addOptions(wsdl_options);
return soap.createClientAsync(url, { wsdl_headers, wsdl_options })
.then(
(client) => {
client.setSecurity(security)
return client;
}
).then((client) => {
return client.FunctionNameAsync({params});
})
这将验证 wsdl 请求和您尝试访问的 SOAP 服务。当我第一次尝试这个时,我得到了错误 Couldn't find NTLM in the message type2 comming from the server
。这是因为我安装的 NAV 默认关闭了 NTLM 身份验证。我不知道关闭此功能后期望使用哪种身份验证方法。您可以通过服务器管理器启用它:
之后重新启动实例,您的身份验证有望正常工作。希望这对其他人有帮助。