I have published a website on the web server where Laserfiche Rio 10 installed. I could "Use Windows Authentication" to logon Laserfiche Client fine on the same server; however, if I use other machine, login with the same AD Windows authentication, open browser to access the website, I keep getting "Access Denied. [9013].
Note that, the website is ok if userid and password are provided in Laserfiche session login.
Here is the Laserfiche Session connection code:
public Session GetLfSession(AdUserProfile pUsrProfile, bool isPrevMethod)
{
Session lfSession = new Session();
RepositoryRegistration lfRepositoryReg
= new RepositoryRegistration(pUsrProfile.UserLfProfile.LfServerName, pUsrProfile.UserLfProfile.LfRespository);
lfSession.LogIn(lfRepositoryReg);
return lfSession;
}
IIS Web site Authentication setup:
IIS web site Application Pool:
Have I missed anything? Please help. Thanks much.