Well, I'm just getting started with using Laserfiche SDK. First step is to login using credentials. Here is the snitppet of code.
Getting the error: "The repository is not recognized as a valid repository in this Laserfiche instance. (9046) "
string serverName = "xx", repoName = "xx";
string username = "xx", password = "xx";
// log into the repository
RepositoryRegistration repository = new RepositoryRegistration(serverName, repoName);
Session session = new Session();
session.LogIn(username, password, repository);