Advertisement
jonnyprimmer

myconfigxmlfile

Jul 26th, 2012
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- The Tridion WAI configuration specifies all configuration values to
  3. enable the Personalisation and Profiling functionality.       -->
  4. <Configuration Version="6.1"
  5.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6.         xsi:noNamespaceSchemaLocation="schemas/cd_wai_conf.xsd">
  7. <!-- The Global section specifies configuration details that apply to all functionality. -->
  8.     <Global>
  9.         <!--
  10.         Specify RMI listening port
  11.         -->
  12.         <!--
  13.         <RMIChannel ListenerPort="1050"/>
  14.         -->
  15.     </Global>
  16.     <!-- The Presentations element contains a list of all Presentations. -->
  17.     <Presentations>
  18.         <!-- A Presentation is a sub or superset of hosts. A Presentation
  19.              configuration identifies which hosts for a Presentation and how the
  20.              functionality for that set of hosts should behave.
  21.              A Presentation should contain an Id attribute, which is used to store
  22.              Tracking and Profiling information in the database.
  23.              Multiple Presentation elements are allowed. -->
  24.         <Presentation Id="1">
  25.             <!-- The Host element allows you to identify a host that should be part of
  26.                  the Presentation. Multiple host elements are allowed.
  27.                 The following attributes are specified:
  28.                 Domain    The domain of the website, for example www.tridion.com. The default domain is localhost.
  29.                 Port      The port of the website, for instance 8080. The default port is 80.
  30.                 Path      The path identifying a virtual directory or a subset of your of your website.
  31.                           The default path is /.
  32.                 Protocol  The protocol used for the website. The default protocol is http. -->
  33.             <Host Domain="localhost" Port="8081" Protocol="http" Path="/"/>
  34.             <!-- The Personalization element holds configuration information about tracking
  35.                  and profiling. The Enabled attribute can be used to turn on and off.
  36.                  The second attribute Persistence should be set to cookies. -->
  37.             <Personalization Enabled="true" Persistence="cookies">
  38.                 <!-- The Cookie element allows you to specify properties for cookies. -->
  39.                 <Cookie Name="TDS1234567" Expires="39000"/>
  40.                 <!-- The Tracking element allows you to specify properties for Tracking. -->
  41.                 <Tracking>
  42.                     <!-- The Timeframe element allows you to specify properties for Timeframes
  43.                          which are used in Tracking. The following attributes can be set:
  44.                             Type       The type of timeframe (hourly, daily, weekly or monthly).
  45.                             Multiplier The multiplier attribute allows you to influence the time-
  46.                                        frame type. For example, if type is set to hourly and the
  47.                                        multiplier is set to 2, the timeframe period is two hours.
  48.                             Autofill   This property indicates if missing timeframes should be
  49.                                        recreated. Timeframes can be missing when the server has
  50.                                        offline for a certain time. -->
  51.                     <Timeframe Type="hourly" Multiplier="1" Autofill="true"/>
  52.                     <!-- To enable the tracking of Page Requests, set the Enabled attribute of
  53.                          the Pages element to true. -->
  54.                     <Pages Enabled="true"/>
  55.                     <!-- To enable the tracking of Component visits, set the Enabled attribute
  56.                         of the Components element to true.
  57.                         The Max attribute identifies the maximum number of components that are
  58.                         allowed to be on a page for the components to be tracked. -->
  59.                     <Components Enabled="true" Max="10" Averaging="true"/>
  60.                     <!-- To enable the tracking of Component Link Clicks, set the Enabled
  61.                          attribute of the ComponentsLinks element to true.
  62.                          Also, the AddComponentLinkInfo attribute of the Linking element in the
  63.                          Tridion Linking configuration file (cd_link_conf.xml) should be set to true. -->
  64.                     <ComponentLinks Enabled="true"/>
  65.                     <Keys Enabled="true" Increment="50" Decrement="1" Averaging="false" ComponentLinks="true"/>
  66.                     <!-- The Exclude element allows you to exclude Pages, Components and Paths
  67.                          being tracked. -->
  68.                     <Exclude>
  69.                         <!-- Pages are excluded by id. These id's should be separated by semi-colons.
  70.                              Ranges can be specified by using a dash between two numeric values. -->
  71.                         <Pages></Pages>
  72.                         <!-- Components are excluded by id. These id's should be separated by
  73.                              semi-colons. It is also allowed to specify ranges, this can be done
  74.                              by using a dash between two numeric values. -->
  75.                         <Components/>
  76.                         <!-- Paths can be separated by semi-colons. An asterix (*) can be used
  77.                              as a wildcard. Two asterixes indicate that the wildcard is cross-directories. -->
  78.                         <Paths/>
  79.                     </Exclude>
  80.                 </Tracking>
  81.                 <!-- For Customer Characteristics it is possible to configure if values
  82.                      should be trimmed (removing preceding and trailing spaces) or not.
  83.                      If the PreserveWhitespace attribute is set to true, the values will
  84.                      not be trimmed. If it is set to false, values are trimmed. -->
  85.                 <CustomerCharacteristics PreserveWhitespace="true"/>
  86.             </Personalization>
  87.         </Presentation>
  88.     </Presentations>
  89.    
  90.     <!--
  91.     Specifies the location of the license file.
  92.     -->
  93.     <!--
  94.     <License Location="c:/Tridion/config/cd_licenses.xml"/>
  95.     -->
  96. </Configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement