System Configuration
The following example accesses and updates the configuration of the XIA Automation Server.
- Connect to the administration web service.
# Get the current system configuration.
$configuration = $administration.GET_SystemConfiguration();
# Modify the configuration.
$configuration.UserInterface.Title = "New Company Name";
# Update the configuration.
$administration.SET_SystemConfiguration($configuration);