OnePlaceLive Settings

Defining the OnePlaceLive Solutions Site

There are three ways to set the URL to the OnePlace Solutions Configuration Site:

 

1. Via an MSI switch

SettingsUrl="http://vs-server38/sites/live"

 

note

Details entered via an MSI switch or via the setup.exe will always override settings from other methods detailed below (i.e what is set in CommonConfig.xml)

 

2. In Settings Window:

 

 

 

3. Via the configuration update process:

 

Example XML to set the OnePlaceLive site

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <settingsUrl action="delete"/>
    <settingsUrl action="insert" value="http://vs-server38/sites/live" />
</configuration>

 

By default, Updates to Settings via OnePlace Live and Solution Profiles are checked every hour; these are downloaded in the background of OnePlaceMail and OnePlaceDocs.

 

Property 

Mandatory / Optional

Description

action

Mandatory

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

enableClientEdit

Optional 

Ability for user to modify this setting in the client install

enabled

Optional

Ability for user to modify settings.

Valid values:

"true" / "false"

 

Modify the site setting tab can be disabled via the configuration update process

Disabling the ability to modify the OnePlace Solutions Site via the UI

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

 

 

To enable settings updates.

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

 

 

To disable settings updates

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

 

 

To disable the ability to modify the settings update the UI

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

 

 

Enable the Settings Update via the UI

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