Page 1 of 1

Calling method of another instance from inside opc server

Posted: 20 Sep 2019, 14:00
by JureL
On OPC server I have two ua objects, Object1 with method1() and Object2 with method2().

When OPC client calls Object1.method1(), this method should then call Object2.method2().

The problem is I don't know how to get a reference to Object2 from inside Object1 to call method2().
Also method2() is not a ua method node. It is an ordinary public method.

So my question is, how do I proceed? Is there a mechanism to access methods of other objects?