node-opcua-server 2.62.5 → 2.63.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base_server.d.ts +1 -1
- package/dist/base_server.js.map +1 -1
- package/dist/node_sampler.js +3 -3
- package/dist/node_sampler.js.map +1 -1
- package/dist/opcua_server.d.ts +1 -1
- package/dist/opcua_server.js.map +1 -1
- package/dist/register_server_manager.js +5 -1
- package/dist/register_server_manager.js.map +1 -1
- package/dist/server_end_point.js +5 -3
- package/dist/server_end_point.js.map +1 -1
- package/dist/server_engine.js +18 -4
- package/dist/server_engine.js.map +1 -1
- package/package.json +46 -47
- package/source/base_server.ts +2 -1
- package/source/node_sampler.ts +1 -1
- package/source/opcua_server.ts +1 -1
- package/source/register_server_manager.ts +4 -1
- package/source/server_end_point.ts +5 -3
- package/source/server_engine.ts +21 -4
- package/.mocharc.yml +0 -10
package/source/server_engine.ts
CHANGED
|
@@ -340,11 +340,28 @@ export class ServerEngine extends EventEmitter {
|
|
|
340
340
|
|
|
341
341
|
// --------------------------------------------------- ServerCapabilities
|
|
342
342
|
options.serverCapabilities = options.serverCapabilities || {};
|
|
343
|
+
|
|
344
|
+
// https://profiles.opcfoundation.org/profile
|
|
343
345
|
options.serverCapabilities.serverProfileArray = options.serverCapabilities.serverProfileArray || [
|
|
344
|
-
"Standard UA Server Profile",
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
346
|
+
"http://opcfoundation.org/UA-Profile/Server/Standard", // Standard UA Server Profile",
|
|
347
|
+
"http://opcfoundation.org/UA-Profile/Server/DataAccess",
|
|
348
|
+
"http://opcfoundation.org/UA-Profile/Server/Events",
|
|
349
|
+
"http://opcfoundation.org/UA-Profile/Client/HistoricalAccess",
|
|
350
|
+
"http://opcfoundation.org/UA-Profile/Server/Methods",
|
|
351
|
+
"http://opcfoundation.org/UA-Profile/Server/StandardEventSubscription",
|
|
352
|
+
"http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary",
|
|
353
|
+
"http://opcfoundation.org/UA-Profile/Server/FileAccess",
|
|
354
|
+
"http://opcfoundation.org/UA-Profile/Server/StateMachine"
|
|
355
|
+
// "http://opcfoundation.org/UA-Profile/Transport/wss-uajson",
|
|
356
|
+
// "http://opcfoundation.org/UA-Profile/Transport/wss-uasc-uabinary"
|
|
357
|
+
// "http://opcfoundation.org/UA-Profile/Server/DurableSubscription"
|
|
358
|
+
|
|
359
|
+
// "http://opcfoundation.org/UA-Profile/Server/ReverseConnect",
|
|
360
|
+
// "http://opcfoundation.org/UAProfile/Server/NodeManagement",
|
|
361
|
+
|
|
362
|
+
// "Embedded UA Server Profile",
|
|
363
|
+
// "Micro Embedded Device Server Profile",
|
|
364
|
+
// "Nano Embedded Device Server Profile"
|
|
348
365
|
];
|
|
349
366
|
options.serverCapabilities.localeIdArray = options.serverCapabilities.localeIdArray || ["en-EN", "fr-FR"];
|
|
350
367
|
|