CoAuthoring在使用Word 2010的SharePoint 2013中不起作用,打开文档的第二个用户会收到第一个用户仍然独占锁定的消息。 我已经检查过在文档库上启用了以下设置:
a. Versioning is enabled on library
b. Required checkout is set to disable
c. docx document is used for coauthoring
以下powershell用于启用共同创作:
$site="http://vm-33305-02:2017/sites/impact"
$currentSite=new-object Microsoft.SharePoint.SPSite($site)
$currentSite.WebApplication.WebService.CoauthoringVersionPeriod = 0
$currentSite.WebApplication.WebService.Update()
如果有人遇到同样的问题,请提供帮助。
答案 0 :(得分:0)
web.config中的servicemodel配置缺少aspnecompatibilityenabled属性,这是共同创作工作所必需的