Alfresco 与 Drupal CMIS

Alfresco with Drupal CMIS

我正在尝试配置 Drupal CMIS 以连接到 Alfresco public 测试存储库。

我正在使用这个 CMIS 模块 https://www.drupal.org/project/cmis

我正在使用 Alfresco 4.x 在这里找到的 CMIS 内容存储库 https://www.alfresco.com/cmis

问题是,当我尝试在 drupal 中浏览存储库时,我收到以下消息 联系 CMIS 服务器时出现问题,请查看日志。

错误日志总是显示

HTTP call to [repository link here, shown in code sample bellow] returned [307]. Response: Authentication Required Authentication Required

我的 Drupal 设置文件包含以下内容

$conf['cmis_repositories'] = array(
'default' => array(
'user' => 'admin',
'password' => 'admin',
'url' => 'http://docs.oasis-open.org/ns/cmis/ws/200908/'
)
);

配置是模块文档中的 copy/pasted,包括出现在错误消息中的 URL。我还使用 print('

' .print_r($conf,true) . '
') 查看了 $conf 全局,所以我肯定 settings.php 是正确的。 我的管理员、通行证、url 组合是否仍然有效(即网站是否是最新的) 还有什么可能导致这种情况?

你的url好像有误

请尝试 http://cmis.alfresco.com/cmisatom (Atompub ) , http://cmis.alfresco.com/cmisbrowser (json)

您提到的露天网站 link 中有链接

干杯,

索拉夫