This repository has been archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Mirror of Apache Chemistry PortCMIS
License
apache/chemistry-portcmis
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Apache Chemistry PortCMIS 0.4 ============================= Apache Chemistry PortCMIS is a Content Management Interoperability Services (CMIS) client library for the .NET Standard 1.1 or higher. See https://chemistry.apache.org/dotnet/portcmis.html for more information. See https://chemistry.apache.org/docs/cmis-samples/ for code samples. If you find a problem, please let us know: https://issues.apache.org/jira/browse/CMIS Libraries --------- PortCMIS consists of two libraries: PortCMIS and PortCMISWin. The PortCMIS library is a .NET Standard 1.1 library and contains the main code. The PortCMISWin library adds support for Windows Runtime APIs, especially the Windows.Web.Http.HttpClient. Use it only if you need a specific feature that is not available with the System.Net.Http.HttpClient. Use this code to create a session with PortCMIS: IDictionary<string, string> parameters = new Dictionary<string, string>() { {SessionParameter.BindingType , BindingType.Browser}, {SessionParameter.BrowserUrl , "http://localhost:8080/inmemory/browser"}, {SessionParameter.RepositoryId , "A1"}, {SessionParameter.User , "user"}, {SessionParameter.Password , "password"} }; ISessionFactory factory = SessionFactory.NewInstance(); ISession session = factory.CreateSession(parameters); Use this code to create a session with PortCMISWin: IDictionary<string, string> parameters = new Dictionary<string, string>() { {SessionParameter.BindingType , BindingType.Browser}, {SessionParameter.BrowserUrl , "http://localhost:8080/inmemory/browser"}, {SessionParameter.RepositoryId , "A1"}, {SessionParameter.User , "user"}, {SessionParameter.Password , "password"} }; ISessionFactory factory = WindowsSessionFactory.NewInstance(); ISession session = factory.CreateSession(parameters); Please note that the authentication provider interfaces are different for PortCMIS and PortCMISWin. Custom authentication provider implementations have to developed for either PortCMIS or PortCMISWin. Change log ---------- PortCMIS 0.4: - ... PortCMIS 0.3: - Switched from a Portable Class Library to a .NET Standard Library - Bug fixes and small improvments - See https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340229&projectId=12310936 PortCMIS 0.2: - Bug fix release - See https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310936&version=12337841 PortCMIS 0.1: - Initial release Strong-Name signing ------------------- The DLL included in this release is signed with a public/private key pair that is also included in this package. This allows you to deploy it to the global assembly cache (GAC) and to make changes to the PortCMIS source code without recompiling your application. However, since the private key is publicly available, this strong name cannot be trusted. If a trust relationship between your application and the PortCMIS DLL is important to you, you have to rebuild the DLL from the source code and sign it yourself.
About
Mirror of Apache Chemistry PortCMIS
Topics
Resources
License
Code of conduct
Security policy
Stars
Watchers
Forks
Packages 0
No packages published