我正在尝试配置Drupal CMIS以连接到Alfresco公共测试存储库。
我正在使用这个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/'
)
);
配置从模块文档中复制/粘贴,并包含错误消息中显示的URL。此外,我已经使用print('
' .print_r($conf,true) . '')查看了$ conf global,所以我肯定有settings.php正确。 是我的管理员,通行证,网址组合仍然有效(即网站是最新的) 还有什么可能导致这个?
答案 0 :(得分:1)
您的网址似乎有误。
请尝试使用http://cmis.alfresco.com/cmisatom(Atompub),http://cmis.alfresco.com/cmisbrowser(json)
您提到的露天网站链接中有链接
欢呼声,
Saurav