Can opcua client trigger events to server in Python?

Question:

i have an issue with the design of my server-client opcua framework.

The thing is, from client i want to send a event notification to opcuaServer. Is this possible?

Until now i can send event triggers from server, but i dont know if client is capable of that.

What gives?

An explanation of code related to the question or a simple answer.

Asked By: Francisco Fonseca

||

Answers:

No.

Think about the problem differently. Maybe the solution is for your client to call a Method on the server, or to write a Value to a specific VariableNode that the server will react to.

Answered By: Kevin Herron

In my point of view you should use the method call. Creating a variable and internally subscribing to it is more of a work around.

Answered By: Sebastian Friedl
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.