我已经在 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."
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>
请建议。