1

是否有任何服务或作业计划每分钟调用一次以执行过期内容?我想覆盖该服务。

任何答案将不胜感激。谢谢

4

2 回答 2

0

我猜你想防止某些内容项过期。有一个服务,EXPIRE_UNEXPIRE_DOC_BY_NAME,用于过期(和取消过期)内容(我不确定是否始终使用此服务):

This service is used to expire or unexpire documents in the Content Server.
@param dDocName The document to expire or unexpire.
@param action Should be set to 'expire' or 'unexpire'.

您可以连接到上述服务并覆盖其功能。

以下服务列出了过期和过期的项目。 GET_EXPIRED

The optional isExpiredQuery parameter, when set to true, causes the service to list only items that have already expired.

Without this parameter, the list also contains items that are scheduled to expire within the range of dates specified by endDate and startDate. This may include items that have already expired if the start date is earlier than the current system time.

还有一个 ScheduledEvent,EnableExpirationNotifier,它将发送一封电子邮件,列出即将过期的内容项。您可以挂钩此事件并对它返回的项目做一些事情。

于 2014-03-12T12:11:17.843 回答
0

谢谢回答我的问题。我被认为 EXPIRE_UNEXPIRE_DOC_BY_NAME 是唯一一项使内容过期的服务。但是这个服务只有在我们点击按钮强制使内容过期时才会触发。我终于得到了自己的问题。有一个每分钟调用一次的作业计划,还有使内容过期的 javaMethod。该服务是 ziprenditionmanagement_service.htm 中的 PROCESS_STATIC_RENDITION_JOBS。注意我们只能直接编辑这个服务,不能覆盖这个组件之外的服务。

于 2014-03-13T08:23:13.160 回答