02-23-2006 08:02 AM
protected abstract boolean implementationAllowsGuestLogin();
@Override
protected boolean implementationAllowsGuestLogin()
{
return true;
}
06-21-2009 07:35 PM
<bean id="authenticationComponent"
class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl"
parent="authenticationComponentBase">
<property name="authenticationDao">
<ref bean="authenticationDao" />
</property>
<property name="authenticationManager">
<ref bean="authenticationManager" />
</property>
<property name="allowGuestLogin">
<value>fasle</value>
</property>
<property name="nodeService">
<ref bean="nodeService" />
</property>
<property name="personService">
<ref bean="personService" />
</property>
<property name="transactionService">
<ref bean="transactionService" />
</property>
</bean>
Hello,
You can disable guest access within the authentication-services-context.xml
The relevant section is:
<bean id="authenticationComponentImpl" class="org.alfresco.repo.security.authentication.AuthenticationComponentImpl">
<property name="authenticationDao">
<ref bean="alfDaoImpl" />
</property>
<property name="authenticationManager">
<ref bean="authenticationManager" />
</property>
<property name="allowGuestLogin">
<value>true</value>
</property>
</bean>
Change
<property name="allowGuestLogin">
<value>true</value>
</property>
To:
<property name="allowGuestLogin">
<value>false</value>
</property>
You can use the new extension configuration functionality to change this setting: see here
Hope this helps,
Steve
08-06-2009 02:57 AM
authentication.chain=ldap1:ldap,ldap2:ldap
ldap.authentication.allowGuestLogin=false
08:31:07,840 ERROR [org.alfresco.web.scripts.AbstractRuntime] Exception from executeScript - redirecting to status template error: 07061383 Guest authentication not supported
08-06-2009 04:19 AM
08-06-2009 05:26 AM
08-10-2009 10:34 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.