PT Sync Multi Server Configuration

From ADF Docs
Revision as of 01:38, 7 October 2011 by Mcarroll (talk | contribs)
Jump to: navigation, search

Overview

The following feature is implemented to sync custom element data across multiple CommonSpot servers and sites.

The steps below identify the configurations to setup and configure.

Enable Multi Server

  1. Navigate to the App Configuration Manager page.
  2. Edit the record and open the "Features" tab. Update the "Enable Multi Server Configuration" field to "True".
  3. Reset the ADF for the server and site.

Configuration

  1. Within the PT Sync App directory, locate the following XML file (/ADF/apps/pt_sync/site_files/_cs_apps/config/ptSync.xml).
  2. Copy this file into the source site directory (/_cs_apps/config/). If the directory does not exist, then create it.
  3. Update the XML file that was copied into the source site. The XML file is formatted to build a relationship for CommonSpot servers and the sites within the server.
  4. The following example with setup the configuration for a server named "csServer1" and contains two sites named "mySite1" and "mySite2". Also, another server named "csServer2" and contains a single site named "myOtherSite1".
<?xml version="1.0" encoding="utf-8"?> 
<settings>
  <SERVERS>
    <csServer1>
      <id>1</id>
      <display>CS Server 1</display>
      <url>http://csServer1/</url>
      <SITES>
        <mySite1>
          <id>1</id>
          <display>My Site 1</display>
        </mySite1>
        <mySite2>
          <id>2</id>
          <display>My Site 2</display>
        </mySite2>
      </SITES>
    </csServer1>
    <csServer2>
      <id>2</id>
      <display>CS Server 2</display>
      <url>http://csServer2/</url>
      <SITES>
        <myOtherSite1>
          <id>1</id>
          <display>My Other Site 1</display>
        </myOtherSite1>
      </SITES>
    </csServer2>
  </SERVERS>
</settings>