When I connect by using windows credentials as shown in the below code, I am getting “The user account name or password is incorrect. [9010]” exception, but I am able to connect directly Laserfiche Client by manually entering windows credentials.
RepositoryRegistration repositoryRegistration = new RepositoryRegistration("LFServerName", "repository"); Session session = new Session(); session.LogIn("domainName\\userName", "password", repositoryRegistration);
I am getting exception “The user account name or password is incorrect. [9010]” at 3rd line session.LogIn() in the above code.
Here I have to connect to Laserfiche from another web application, so I am not able to connect using “Window’s authentication”
How to log into Laserfische with Networkcredentialcache specified explicitly?