Replies: 1 comment 6 replies
-
OPC UA Protocol: you are referencing the opc ua subscription in the docs -> a opc ua subscription does not work the same way like a mqtt subscription work! TCP Transport: |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Thanks for a great software implementation.
I am testing running several clients working against a common UA-server.
The client is set up such that all available nodes on the server are subscribed to.
Data is sent back using the ua_node.set_value(val) method.
I am running about 500 tags.
My big question is how we can assure that data is transferred to server? I have tried to understand how this is implemented in the protocol but it is still not clear.
https://reference.opcfoundation.org/v104/Core/docs/Part4/5.13.1/
Using mqtt, for example, there is a QoS (quality of service) system, that gives a feedback handshake to confirm delivery.
I am loosing some data as packets are lost. If a packet gets lost, the sender should be responsible to retransmit the message within a reasonable amount of time.
Is there an example of a common way of ensuring this delivery?
Thanks again for the work on this project!
regards
Beta Was this translation helpful? Give feedback.
All reactions