Documentation Center

Relating an identity to a profile

You need to define an identity in the Archive Manager configuration file to match a user profile (the profile matches a Target Group definition).

Procedure

  1. Open the cd_archivemanager_conf.xml file in a plain-text editor or an XML editor.
  2. In the <capture> step, define your identities. For example:
    <Capture Class="com.tridion.archiving.http.HttpCapture"
                       ProcessChildren="true" WorkFolder="c:\temp\bool">
       <DefaultIdentity>
          <HttpHeader Name="User-Agent" Value="Mozilla/5.0 (Windows; U;
                 Windows NT 5.2; en-US; rv:1.8.1) Gecko/20061010 Firefox/2.0"/>
       </DefaultIdentity>
       <Identity Name="UK customer">
          <Cookie Name="TDS1234567" Value="10131"/>
       </Identity>
       <Identity Name="NL customer">
          <Cookie Name="TDS1234567" Value="10132"/>
       </Identity>
       <Identity Name="BE customer">
          <Cookie Name="TDS1234567" Value="10133"/>
        </Identity>
    </Capture>
  3. For the Name attribute of the Identity element, specify a logical identifier with which to identify the identity. The name appears in the list of profiled users in the Archive Manager Explorer:
  4. For the Cookie Name value, specify the Name of the cookie that sets user profile information (in this example, TDS1234567). The name is specified in the configuration file used for Profiling and Personalization (cd_wai_conf.xml). You can also see the Name in the Firefox Cookies dialog. The following image shows the cd_wai_conf.xml configuration file and the Firefox Cookies dialog:
  5. Save and close the cd_archivemanager_conf.xml file.