SpssServerConfList Class (Python)
The SpssServerConfList
class
allows you to manage the list of configured servers, which includes
the local computer. You obtain an SpssServerConfList
object from the GetConfiguredServers method
of the SpssClient
class.
An SpssServerConfList
object is not an iterable Python object. In order to iterate over
the items in the list, use a for
loop, as in:
for index in range(SpssServerConfList.Size()):
For an example
that uses the SpssServerConfList
class, see the example for the SpssServerConf class.