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!