在Tridion中安装触点同步(ASP.NET)时出错



我已经设置了ASP.NET中的联系人的同步服务器

 "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."

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>

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>

请建议。

显然,即使您的配置文件状态是电子邮件地址字段,您的数据库中都没有邮件扩展详细字段。

如果您的字段与您要用于联系人的电子邮件地址的邮件不同,请更新CD_AUDIENCE_MANAGER_CONF.XML。

如果邮件是要使用的正确字段,则可能需要在数据库中设置扩展细节字段。

(在这种情况下,P.S。Outboundemail.xml不相关 - 仅在内容管理器机器上使用)

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

最新更新