You are viewing limited content. For full access, please sign in.

Question

Question

Users scanning

asked on June 19, 2015

  problem:
before doing the upgrade Laserfiche 8.3 to 9.2, 
I have clients that connect through a web porta (own development), 
users use a connection through their own .NET code using Laserfiche SDK and automatically create folders and documents predesigned, 
but when the upgrade from 8.3 to 9.2 was done, 
these users can not create the connection to create pre-designed folders and documents. 
I will remove the user scanning and another user with administrator privileges genre repository for .NET 
connection and can generate pre folders and documents designed
example:
  
  --Laserfiche 8.3 connection
  private string openConnection()
        {
            string value = "";
            try
            {
               
                LFApplication aplicacion = new LFApplication();
                this.DataBaseLF = aplicacion.GetServerByName(this.server).GetDatabaseByName(this.repositorio);
                this.Conexion.UserName = this.usuario; --user scanning role 
                this.Conexion.Password = this.password; --user scanning role same user for two connections
                
                this.Conexion.Create(this.DataBaseLF);
                value = "Conexion Establecida Exitosamente a Lase Fiche\n";
            }
            
            
    --Laserfiche 9.2 connection

  private string openConnection()
        {
            string value = "";
            try
            {
               
                LFApplication aplicacion = new LFApplication();
                this.DataBaseLF = aplicacion.GetServerByName(this.server).GetDatabaseByName(this.repositorio);
                this.Conexion.UserName = this.usuario; --user scanning role 
                this.Conexion.Password = this.password; --user admin role     different users for connection
                
                this.Conexion.Create(this.DataBaseLF);
                value = "Conexion Establecida Exitosamente a Lase Fiche\n";

and I can not leave this setting, because if more than two administrators bloeque are connected to the other connections.
and displays the message: The maximum number of Seciones to which this server instance is authorized, in the code is reached (I show image)
I need to do for a non-administrator user can make the pre-designed documents 
Thanks!

Laser.jpg
Laser.jpg (67.62 KB)
0 0

Replies

replied on June 19, 2015

There is a limit of 4 sessions per user, make sure your SDK application is logging out the session when it is no longer needed. Check the session list in the Administration Console to see which applications are using sessions.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.