Change Log NULL records in CMIS Workbench - SharePoint 2013 SP1

落花浮王杯 提交于 2019-12-12 03:34:54

问题


Change Log show null records when using AtomPub

I am using CMIS Workbench 0.13.0 to connect to a SharePoint 2013 server (SP1) via:

AtomPub endpoint

i.e. http://<host>/_vti_bin/cmis/rest?getRepositories

Web Service endpoint

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

DotCMIS 0.7 (similiar problem)

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

Postman (GET) of change log endpoint returns valid results

sample of: 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>

回答1:


This problem was fixed by patching SharePoint 2013 SP1 with the Feb 2016 SharePoint Cumulative Update (CU) from Microsoft.

  • CU for SharePoint Server 2013 (KB3114726)
  • Pre-requisite of this CU is SharePoint Server 2013 Service Pack 1

Thank you Florian!



来源:https://stackoverflow.com/questions/35767522/change-log-null-records-in-cmis-workbench-sharepoint-2013-sp1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!