Replies: 2 comments 2 replies
-
Not sure if this is exactly what you’re after, but the Building a “proper” aggregating server is a pretty difficult undertaking so there is no example. If I were attempting this I would probably not represent each Node in the underlying server with my own Node in memory, but rather, try to pass through each of the service calls on the AddressSpace to the underlying client/server pair. Or at least that’s the first thing I’d investigate as a possibility. |
Beta Was this translation helpful? Give feedback.
-
I'm trying this but in variant value i have a value from DAO object (Main.thMain.wrl0.lastHistory.getTemp), and when i update this object the value not refresh. what is the issue?
Whey a set new value for this object Main.thMain.wrl0.lastHistory.setTemp(1000); its not update in OPCUA explorer its read the initial value when its created. |
Beta Was this translation helpful? Give feedback.
-
Hi - I am trying to create an AddressSpace mapper: OPC UA Client on one side, OPC UA Server on the other. The best I've come up with so far is to add the logic to the class spanning the Namespace. I create a separate Thread for each server-side VariableNode to implement the client and mapping logic there - similar to the BogusEventNotifier from the ExampleServer. I feel like it would be smarter to somehow attach the mapping logic to the UaVariableNode itself but couldn't find a method that is designed to supply runtime data. Is there a best-practise/example for this?
Beta Was this translation helpful? Give feedback.
All reactions