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
- Open the
cd_archivemanager_conf.xmlfile in a plain-text editor or an XML editor. - 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> - For the
Nameattribute 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:
- For the
Cookie Namevalue, 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 thecd_wai_conf.xmlconfiguration file and the Firefox Cookies dialog:
- Save and close the
cd_archivemanager_conf.xmlfile.