更改 CMIS 中的日志 NULL 记录 Workbench - SharePoint 2013 SP1

Change Log NULL records in CMIS Workbench - SharePoint 2013 SP1

更改日志在使用 AtomPub 时显示空记录

我正在使用 CMIS Workbench 0.13.0 通过以下方式连接到 SharePoint 2013 服务器 (SP1):

AtomPub 端点

http://<host>/_vti_bin/cmis/rest?getRepositories

Web 服务端点

http://<host>/_vti_bin/cmissoapwsdl.aspx

DotCMIS 0.7(类似问题)

session.GetContentChanges(token, True, 1000).ChangeEventList

[1/1/0001 12:00:00 AM] Created

[1/1/0001 12:00:00 AM] Created

[1/1/0001 12:00:00 AM] Created ...

更改日志端点的邮递员 (GET) returns 有效结果

示例:http://<host>/_vti_bin/cmis/rest/<repo-guid>?getContentChanges&changeLogToken=1;3;<repo-guid>;635919759698870000;11627;02/25/2016 05:46:10&includeProperties=true&includePolicyIds=false&includeACL=false&maxItems=1000

<object xmlns="http://docs.oasis-open.org/ns/cmis/restatom/200908/">
    <properties xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/">
        &lt;propertyId propertyDefinitionId="cmis:objectId" localName="cmis:objectId" displayName="cmis:objectId" queryName="cmis:objectId" xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;
            &lt;value&gt;129&lt;/value&gt;
        &lt;/propertyId&gt;
        &lt;propertyId propertyDefinitionId="SiteId" localName="SiteId" displayName="SiteId" queryName="SiteId" xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;
            &lt;value&gt;(item-guid)&lt;/value&gt;
        &lt;/propertyId&gt;
        &lt;propertyString propertyDefinitionId="ChangeToken" localName="ChangeToken" displayName="ChangeToken" queryName="ChangeToken" xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;
            &lt;value&gt;1;3;(repo-guid);635919759698870000;11627;02/25/2016 05:46:10&lt;/value&gt;
        &lt;/propertyString&gt;
        &lt;propertyString propertyDefinitionId="ChangeType" localName="ChangeType" displayName="ChangeType" queryName="ChangeType" xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;
            &lt;value&gt;Add&lt;/value&gt;
        &lt;/propertyString&gt;
        &lt;propertyDateTime propertyDefinitionId="Time" localName="Time" displayName="Time" queryName="Time" xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;
            &lt;value&gt;2016-02-25T05:46:10Z&lt;/value&gt;
        &lt;/propertyDateTime&gt;
    </properties>
    <changeEventInfo xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/">
        &lt;changeType xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;created&lt;/changeType&gt;
        &lt;changeTime xmlns="http://docs.oasis-open.org/ns/cmis/core/200908/"&gt;2016-02-25T05:46:10Z&lt;/changeTime&gt;
    </changeEventInfo>
</object>

此问题已通过使用 Microsoft 的 2016 年 2 月 SharePoint 累积更新 (CU) 修补 SharePoint 2013 SP1 得到解决。

谢谢弗洛里安!