Good day,
We have recently begun implementing the new SignIx integration modules of Laserfiche.
I have installed the web service on our public facing server while our Laserfiche server sits on a separate internal server.
I would like Windows authentication to be the preferred method but I cannot find the server running on the server to configure the domain account to run.
Should I go the route of Named User, I am also having trouble configuring the web.config file to allow this.
These are the options I have but I am unsure of the formatting to enter the full server name.
* In the case that there are any repositories in your environment that share the same name (on different servers),
but you would like this service to connect to them with different authentication,
you can distinguish by including the full host name of the server (all lowercase) before the repository names, like this:
<add key="LFUser-server.laserfiche.com-repositoryname" value="username" />
<add key="LFUser-server.laserfiche.com-repositoryname" value="password" />
<add key="LFUser-differentserver.laserfiche.com-repositoryname" value="username" />
<add key="LFUser-differentserver.laserfiche.com-repositoryname" value="password" />
* You can also use the machines' ip (v4) addresses instead of their names, if that's easier:
<add key="LFUser-192.168.1.33-repositoryname" value="username" />
<add key="LFUser-192.168.1.33-repositoryname" value="password" />
<add key="LFUser-192.168.1.34-repositoryname" value="username" />
<add key="LFUser-192.168.1.34-repositoryname" value="password" />
* Finally, optionally, if you would like to have a fallback to try if a connection is made
from a repository that has not been explicitly configured (or if many of your repositories reuse the same authentication),
you can specify a default account to try if an account has not been configured for the current repository:
<add key="LFUser" value="username" />
<add key="LFPassword" value="password" />
Thanks