OnePlaceLive - Settings

 The frequency for the software to check whether there are any new Solution Profiles can be defined via the configuration update process.

 

Property 

 Mandatory / Optional

 Description

 action

 Mandatory

Set to "insert" to change the default behavior
Set to "delete" to revert to default behavior 

 updateCheckFrequency

 Optional

Set the period of time to check for new settings updates in minutes

 enabled

 Optional

Set feature to enabled / disabled

 enabledEdit

 Optional

Control if users have the ability to enable/disable this feature through the user interface

Valid values:

"true" / "false"

 

Check the frequency of checking settings to every two hours (120 minutes):

 <?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <settingsUpdates action="delete" />
    <settingsUpdates action="insert" updateCheckFrequency="120"/>
</configuration>

 

Enable Settings to be modified via the user interface

 <?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <settingsUpdates action="delete" />
    <settingsUpdates action="insert" enableEdit="true"/>
</configuration> 

 

 

It is possible to turn off the ability for each client machine to automatically receive settings updates.

Turn off automatic settings updates

<?xml version="1.0" encoding="UTF-8"?>
<configuration> 
    <settingsUpdates action="delete"/>
    <settingsUpdates action="insert" enabled="false" />
</configuration>