没有参数的Python OPC UA调用方法给出了错误

发布于 2025-01-19 09:20:55 字数 503 浏览 0 评论 0原文

我试图调用一个没有输入参数的方法,如下所示: [1] [1]: https://i.sstatic.net/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)

I am trying to call a method with no input arguements which is as follows :
[1]
[1]: https://i.sstatic.net/tGFe9.png

So far I have tried this :

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)

but it given me this BadNotExecutable error:

"The executable attribute does not allow the execution of the method."(BadNotExecutable)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2025-01-26 09:20:55

服务器告诉您该方法无法执行。

您的客户端似乎没有任何问题,请检查服务器配置。

The server is telling you this method cannot be executed.

There doesn't appear to be anything wrong with your client, check the server configuration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文