SessionFactory не найден
Я только начинаю использовать 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();
}
}
}
1 ответ
Оказывается, я просто пропустил заявление об использовании. Я просто должен был добавить:
using DotCMIS.Client.Impl;