4
我以Alfresco開始。我安裝了Alfresco 4社區版,並試圖使用OpenCMIS連接到它。我把這個代碼片段從OpenCMIS頁:用CMIS連接到Alfresco
SessionFactory sessionFactory = SessionFactoryImpl.newInstance();
Map<String, String> parameter = new HashMap<String, String>();
parameter.put(SessionParameter.USER, "admin");
parameter.put(SessionParameter.PASSWORD, "admin");
parameter.put(SessionParameter.ATOMPUB_URL,
"http://repo.opencmis.org/inmemory/atom/");
parameter.put(SessionParameter.BINDING_TYPE,
BindingType.ATOMPUB.value());
parameter.put(SessionParameter.REPOSITORY_ID,
"");
Session s = sessionFactory.createSession(parameter);
不過,我無法找出什麼應該是庫ID以及如何指定露天的URL。有人可以向我解釋嗎?謝謝。
感謝您的信息! :) – 2012-03-03 11:38:44
如果使用的是Alfresco 3,請使用'http:// localhost:8080/alfresco/s/api/cmis'作爲'ATOMPUB_URL'。 – vegemite4me 2015-02-25 09:59:09