when we are trying to connect to the Server to create Folders i the server using laserfiche sdk in C# we are getting operation Timed out error.below is the code we are using the below code
string serverName = "Servername", repoName = "repomname";
string username = "username", password = "password";
try
{
// log into the repository
RepositoryRegistration repository = new RepositoryRegistration(serverName, repoName);
Session session = new Session();
session.IsSecure = true;
Console.WriteLine("i am here");
session.Connect(repository);
session.LogIn(username, password, repository);
Console.WriteLine("i am here too");
String rootFolder = "\\rootfolderpath";
int intfolder = Folder.CreateRecordSeries(rootFolder, "", "", EntryNameOption.None, session);
Console.WriteLine("Success");
}
catch (Exception ex)
{
throw;
}
Operation timed out. is the error we are getting
Thanks