Skip to main content
Version: 8.1

system.opc.getServers

This function is used in Python Scripting.

Description​

Returns a list of server names.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.opc.getServers()

Parameters​

TypeParameterDescription
BooleanincludeDisabledIf set to True, enabled and disabled servers will be returned. If set to False, only enabled servers will be returned. Defaults to False. [optional]

Returns​

List - A list of server name strings. If no servers are found, returns an empty list.

Scope​

Gateway, Vision Client, Perspective Session

Code Examples​

Code Snippet - Printing Ignition OPC UA Servers
# print a list of all server names found
servers = system.opc.getServers()
if not servers:
print "No servers found"
else:
for server in servers:
print server

Keywords​

system opc getServers, opc.getServers