2

当我进行任何 OE API 调用时,得到“没有 AudienceManagerProfile 的数据访问对象”。

在 cd_core 日志中,我可以看到:

2012-05-13 11:59:30,520 DEBUG StorageManagerFactory - Default storage provider has caching set to: false
2012-05-13 11:59:30,520 DEBUG StorageManagerFactory - Loaded following dao Properties[publication=0, typeMapping=AudienceManagerProfile, storageId=profiledb, cached=false] for publication/typeMapping/itemExtension: 0 / AudienceManagerProfile / null
2012-05-13 11:59:30,520 DEBUG StorageManagerFactory - Loading a non cached DAO for publicationId/typeMapping/itemExtension: 0 / AudienceManagerProfile / null
2012-05-13 11:59:30,535 ERROR Contact - Unable get contact for requested Identification fields
java.sql.SQLException: No Data Access Object for AudienceManagerProfile

我检查了我的 cd_storage_conf.xml 文件,它看起来是正确的(我将它与论坛上 Nuno 的工作版本进行了比较)。

进一步在日志中说:

2012-05-13 11:59:29,724 INFO  StorageManagerFactory - Checking if product Tridion CD Storage is enabled....
2012-05-13 11:59:29,724 INFO  StorageManagerFactory - Tridion CD Storage is running in limited mode

“限制模式”听起来很糟糕!这是问题的根本原因还是无关?

干杯

4

1 回答 1

5

如果代理以受限模式运行,则意味着它找不到“完整”代理的许可证。所以要么它找不到许可证文件,要么许可证文件不包含代理许可证。

发生这种情况时,代理将回退到使用其内置的 ItemType 映射,这意味着它只支持将它们存储到文件系统。

通常最好将 指向cd_storage_conf.xml许可证文件的正确位置。您不会以这种方式依赖内置搜索路径,并且代理将开始使用您配置的映射。

<License Location="/path/to/cd_licenses.xml"/>
于 2012-05-13T11:44:02.273 回答