OPCFoundation / UA-Java-Legacy

This repository is provided by OPC Foundation as legacy support for an Java version for OPC UA.
https://github.com/OPCFoundation/UA-.NETStandard
Other
354 stars 226 forks source link

How to share the real time data values in server? #223

Closed Chuntianhong closed 2 years ago

Chuntianhong commented 2 years ago

I should implement the OPC Server function in my JavaFX and should provide real-time data values in the clients request. How can I share the real time data values in server? Would you provide any sample? Thank you for your help.

jouniaro commented 2 years ago

This project only implements the communication stack. For full applications, you will need to implement all the services as well. That it outside the scope of this project, but the Prosys OPC UA SDK for Java covers the full server implementation, for example.

If you wish to do it yourself, you can take a look at the ServerExample1, which shows a minimal implementation that you can start with. There is quite much to cover in total, so you may like to take a look at the SDK option as well, anyway.