Python 不带参数的 OPC UA 调用方法出错
Python OPC UA call method without arguments gives error
我正在尝试调用一个没有输入参数的方法,如下所示:
[1]
[1]: https://i.stack.imgur.com/tGFe9.png
到目前为止我已经试过了:
method=client.get_node("ns=5;s=Demo.StateMachines.Program01.Reset")
parent=client.get_node("ns=5;s=Demo.StateMachines.Program01")
output=parent.call_method(method)
但它给了我这个 BadNotExecutable 错误:
"The executable attribute does not allow the execution of the method."(BadNotExecutable)
服务器告诉您此方法无法执行。
您的客户端似乎没有任何问题,请检查服务器配置。
我正在尝试调用一个没有输入参数的方法,如下所示: [1] [1]: https://i.stack.imgur.com/tGFe9.png
到目前为止我已经试过了:
method=client.get_node("ns=5;s=Demo.StateMachines.Program01.Reset")
parent=client.get_node("ns=5;s=Demo.StateMachines.Program01")
output=parent.call_method(method)
但它给了我这个 BadNotExecutable 错误:
"The executable attribute does not allow the execution of the method."(BadNotExecutable)
服务器告诉您此方法无法执行。
您的客户端似乎没有任何问题,请检查服务器配置。