在tridion中安装Contact同步(ASP.NET)时出错

Mee*_*shi 6 tridion tridion-2011

我在ASP.net中为联系人设置了同步服务器但是当我尝试浏览ProfileSync.aspx页面时,我收到的错误是

 "Configured E-mail address is not an existing extended detail field"
 "Creating a Contact object failed, while the database settings seem to be correct. Check the cd_audience_manager_conf.xml configuration file."
Run Code Online (Sandbox Code Playgroud)

cd_audience_manager_conf.xml配置文件设置:

 <ExtendedDetails>
    <!-- Name of extended details field that contains the e-mail address -->
    <EmailAddressFieldName>MAIL</EmailAddressFieldName>
    <!-- Name of extended details field(s) used for Contact identification. -->
    <!-- These are always considered mandatory fields -->
    <ContactIdentification>
        <Field>IDENTIFICATION_KEY</Field>
        <Field>IDENTIFICATION_SOURCE</Field>
    </ContactIdentification>
 </ExtendedDetails>
Run Code Online (Sandbox Code Playgroud)

OutboundEmail.xml设置为:

<ContactDetails>
<ItemTitle format="{NAME} {SURNAME} ({MAIL})" />
<ContactDetail name="IDENTIFICATION_KEY" enableSearch="false" isIdentificationKey="true">
  <Label>Identification key</Label>      
</ContactDetail>
<ContactDetail name="IDENTIFICATION_SOURCE" enableSearch="false" isIdentificationKey="true">
  <Label>Import source</Label>
</ContactDetail>
<ContactDetail name="NAME" enableSearch="true">
  <Label>First name</Label>
</ContactDetail>
<ContactDetail name="SURNAME" enableSearch="true">
  <Label>Last name</Label>
</ContactDetail>
<ContactDetail name="MAIL" enableSearch="true" isEmailAddress="true">
  <Label>xyz@cc.com</Label>
</ContactDetail>
<ContactDetail name="COMPANY" enableSearch="true">
  <Label>Company</Label> 
 </ContactDetail>
</ContactDetails>
Run Code Online (Sandbox Code Playgroud)

请建议.

Hus*_*pes 1

要创建数据库条目,您可以参考此链接(需要登录)。我还没有尝试过,但这似乎是一个 DBA 的任务。