Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.nodesets.standard_nodeset_file,
     nodeset_filename1,
     nodeset_filename2 
   ]
   /*  other server options here */
};

var server = new opcua.OpcuaServer(server_options);

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...