0

CMISを使い始めたばかりです。Apache サイト ( https://chemistry.apache.org/dotnet/getting-started-with-dotcmis.html )から最初のサンプルを取得しようとしていますが、コンパイラは SessionFactory を受け入れません。私は何を間違っていますか?

using System;
using System.Collections.Generic;
using System.Linq;
using DotCMIS;
using DotCMIS.Client;

namespace CMIS_TestAndExplore
{
class Program

{
    static void Main(string[] args)
    {
        Dictionary<string, string> parameters = new Dictionary<string, string>();

        parameters[SessionParameter.BindingType] = BindingType.AtomPub;
        parameters[SessionParameter.AtomPubUrl] = "http://<http://localhost:8081/inmemory/atom";
        parameters[SessionParameter.User] = "test";
        parameters[SessionParameter.Password] = "";

        SessionFactory factory = SessionFactory.NewInstance();
        ISession session = factory.GetRepositories(parameters)[0].CreateSession();
    }
}

}

4

1 に答える 1

0

usingステートメントが欠けていたことがわかりました。追加する必要がありました:

using DotCMIS.Client.Impl;
于 2015-06-05T10:05:00.820 に答える