2

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?

kratsching
  • 75
  • 1
  • 9
  • I've found a function called `generate_address_space(addressSpace, xmlFiles, callback)` in the file _load_nodeset2.js_. Unfortunately there is no documentation about this. Maybe someone has a hint for me? – kratsching Nov 29 '16 at 14:43

1 Answers1

7

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) {
});
Community
  • 1
  • 1
Etienne
  • 16,249
  • 3
  • 26
  • 31