将整数写入 OPC UA 服务器 - “类型不同”错误

Write integer to OPC UA server - “not of the same type” error

我已经定义了一个 OPC UA 客户端

 var client = new OpcClient("opc.tcp://localhost:4840");
 client.Connect();

可以正常工作并连接到我也编写的服务器。 客户端也可以读取

var status = client.WriteNode("ns=2;s=Temperature", 999);

当我要向服务器写入值时出现问题:

var status = client.WriteNode("ns=2;s=Temperature", 999);

相反,我得到了错误:

"The value supplied for the attribute is not of the same type as the attribute's value."

那个link Write Boolean to OPC UA server - "not of the same type" error 没有帮助。

我使用了 Opc.UaFx 实现。

提前致谢

帕特里克

只需添加关键字 double:

var status = client.WriteNode("ns=2;s=Temperature", (double)999);