How can I generate a server AddressSpace from a XML nodeset file?

自古美人都是妖i 提交于 2019-11-28 06:34:04

问题


I am getting familiar with the node-opc-ua project and I want to generate a servers address space from a given nodeset (xml file) automatically.

Is there a possibility?


回答1:


You can specify more than one nodeset2.xml files to load to enrich the address space. Here is a simplified example.

var opcua = require("node-opcua");

var nodeset_filename1 ="CustomAddressSpaceNodeset2.xml";
var nodeset_filename2 ="OtherCustomAddressSpaceNodeset2.xml";

var server_options = {
   /* [...] */
   nodeset_filename: [
     opcua.standard_nodeset_file,
     nodeset_filename1,
     nodeset_filename2 
   ]
   /*  other server options here */
};

var server = new opcua.OpcuaServer(server_options);

server.start(function (err) {
});


来源:https://stackoverflow.com/questions/40866428/how-can-i-generate-a-server-addressspace-from-a-xml-nodeset-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!