I use system.util.getGlobals
and define the same in Gateway startup script but i cannot get variable value nowhere.
Can someone help me please?
I use system.util.getGlobals
and define the same in Gateway startup script but i cannot get variable value nowhere.
Can someone help me please?
The persistent dictionary from system.util.getGlobals()
is global for the process running your jython code. It does not magically send messages from gateway to Vision client or vice versa. Use system.util.sendMessage()
or system.util.sendRequest()
to communicate among Ignition's distributed processes.