When I trying to retrieve repositories with following code, I get only one default repository, but actually I have four.
var myServer = new Server("serverName");
var repositories = myServer.GetRepositories();
When I trying to login into existing repository with following code, I get exception
"The repository is not recognized as a valid repository in this Laserfiche instance. [9046]"
RepositoryRegistration repository = new RepositoryRegistration(serverName, repoName);
using (Session session = new Session())
{
session.LogIn(username, password, repository);
}
When I trying to login through website, everything works fine.
Can anybody help me? Thanks!