I have huge problem with OPCDA and OpenOPC. I should (must) read a set of tags from a remote server, I have no access to the machine in any way. I only know the IP and the OPC server name. Testing OpenOPC locally with this code all work fine. Otherwise, changing the hostname with the remote one nothing work with 0x800706BA error. import OpenOPC import time try: opc = OpenOPC.client() opc.servers() #change localhost to remote opc.connect('Matrikon.OPC.Simulation.1', 'localhost') srvList = opc.list()...