dotcmis

GetRepositories(parameters) throws CmisRuntimeException

◇◆丶佛笑我妖孽 提交于 2019-12-25 05:32:07
问题 Hi Everyone, I'm currently trying to Connect to Alfresco (DMS), using DotCMIS/C#, so that I can create/locate/retrieve/archive files from it through my program. Reference: https://chemistry.apache.org/dotnet/getting-started-with-dotcmis.html Note: I tried different "AtomPubUrl" to test which URL might work. [CMIS v1.0] For Alfresco Version 3.x: http://[host]:[port]/alfresco/service/cmis For Alfresco 4.0.x and Alfresco 4.1.x : http://[host]:[port]/alfresco/cmisatom For Alfresco 4.2: http://

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

How to modify a property of a CMIS document using DotCMIS/OpenCMIS

早过忘川 提交于 2019-12-12 03:02:45
问题 Let's say I have a document doc and I want to update its barcode metadata to "01234" . The document might have existing other properties, I don't want to lose them. In case doc already has a barcode , it will be overwritten. How to do this with DotCMIS/OpenCMIS? 回答1: In CMIS, updating properties will overwrite existing values by default, and properties you don't send along with the updateProperties message are by default retained. That is to say that both your requirements are already

integrate a .net application with alfresco using cmis

南楼画角 提交于 2019-12-11 13:17:42
问题 How to integrate a .net application with alfresco ? How cam cmis be used to do the same? 回答1: You can use Apache Chemistry DotCMIS to perform perform CMIS requests from your .net code. The API is very similar to the Java OpenCMIS API, so you can then find a tutorial on using OpenCMIS to talk to Alfresco and do largely the same thing with DotCMIS. If you're new to CMIS, then Apache Chemistry provides a very handy overview on their site. 回答2: The example at http://svn.alfresco.com/repos

Connecting via CMIS (dotCMIS) to SP2010: exception unauthorised

余生颓废 提交于 2019-12-02 21:26:09
问题 Im using dotCMIS and would like to do a simple connect to my SP2010 server. Im trying to do this with C# like here http://chemistry.apache.org/dotnet/getting-started-with-dotcmis.html in the first part So I have something like this: Dictionary<string, string> parameters = new Dictionary<string, string>(); parameters[SessionParameter.BindingType] = BindingType.AtomPub; parameters[SessionParameter.AtomPubUrl] = "http://mysharepoint"; parameters[SessionParameter.User] = "SPAdmin"; parameters

Connecting via CMIS (dotCMIS) to SP2010: exception unauthorised

只谈情不闲聊 提交于 2019-12-02 09:45:34
Im using dotCMIS and would like to do a simple connect to my SP2010 server. Im trying to do this with C# like here http://chemistry.apache.org/dotnet/getting-started-with-dotcmis.html in the first part So I have something like this: Dictionary<string, string> parameters = new Dictionary<string, string>(); parameters[SessionParameter.BindingType] = BindingType.AtomPub; parameters[SessionParameter.AtomPubUrl] = "http://mysharepoint"; parameters[SessionParameter.User] = "SPAdmin"; parameters[SessionParameter.Password] = "1234sharepoint"; SessionFactory factory = SessionFactory.NewInstance();