We recent installed 2nd Laserfiche environment as test environment. We are using LFSO 9.0 we are using vb.net.
I have recompile a production program with connection string for the test system inputting the server name and repository name of the test system.
App = New LFApplication
Serv = App.GetServerByName("TRANSTESTLF.ticominc.local")
DB = Serv.GetDatabaseByName("TransTest")
Conn = New LFConnection
Conn.UserName = System.Environment.UserName
Conn.Password = "Phish1ng#"
We tested the user name and password by using the Laserfiche client. We can attach the repository with the client.
When I attempt to get the entry by the connection, I get exception
"The Object is not identified, and cannot be locked or read from"
Inspection of the lfconnection objection also shows
DirectCast(Conn, LFSO90Lib.LFConnectionClass).CertificateInfo: 'DirectCast(Conn, LFSO90Lib.LFConnectionClass).CertificateInfo' threw an exception of type 'System.Runtime.InteropServices.COMException'
Is there something still misconfigured? Is there way to test to see connection is valid? I have looked at LFConnection.isterminated() The property did not give a good test.
Any suggestions.
Thanks
Tim