你好!欢迎来到深圳市品慧电子有限公司!
语言
当前位置:首页 >> 技术中心 >> 传感技术 >> 创建一个OPCUA发现服务器

创建一个OPCUA发现服务器


在这个实例中我们创建一个OPCUA发现服务器

发现流程,如下图:

1.0 安装依赖

npm install node-opcua-server-discovery

2.0 创建发现服务器


发现服务器内代码

const discoveryServer = new OPCUADiscoveryServer({ port: 4840 });

await discoveryServer.start();

console.log("发现服务器启动 ")const endpointUrl = discoveryServer.endpoints[0].endpointDescriptions()[0].endpointUrl;

console.log(" 发现服务器的端点 url是 ", endpointUrl );

3.0 服务器

让我们创建一个服务器,然后将自己注册到发现服务器



服务器内部代码

启动发现服务器

现在启动discovery_server.ts。

npx ts-node discovery_server.ts

启动服务器

现在启动registering_server.ts脚本。

npx ts-node registering_server.ts





审核编辑:刘清

相关文章

    用户评论

    发评论送积分,参与就有奖励!

    发表评论

    评论内容:发表评论不能请不要超过250字;发表评论请自觉遵守互联网相关政策法规。

    深圳市品慧电子有限公司