Git Product home page Git Product logo

chemistry-portcmis's Introduction

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.

chemistry-portcmis's People

Contributors

fmui avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.