我正在使用node-soap
lib来创建一个soap客户端。
在资产净值方面,
凭据类型为Windows
。当我尝试从NAV Soap Web Service
访问NodeJS
时,它正在给我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());
}
});
答案 0 :(得分:0)
因此,我只是通过此过程将我们的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身份验证。我不知道关闭此功能后期望使用哪种身份验证方法。您可以通过服务器管理器启用此功能:
在重启实例之后,您的身份验证将有望工作。希望这对其他人有帮助。