Hi All,
I have configured external SSO in alfresco-global.properties. creating a subfolder in alfresco/extension/subsytems/Authentication/external/customeauth. The external Authentication is working as expected. Could it possible to enable Screen based login along with exteranl SSO login. i.e. If the header "X-Alfresco-sso-header" is not set the user should be able to login using Alfresco Login screen.
alfreso-global.properties
authentication.chain=customauth:external external.authentication.enabled=true external.authentication.proxyHeader=X-Alfresco-sso-header external.authentication.proxyUserName= external.authentication.defaultAdministratorUserNames= create.missing.people=false
customauth-authentication-context.xml
<!-- Enable control over mapping between request and user ID --><bean id="remoteUserMapper"class="com.mariott.security.authentication.external.MarriottRemoteUserMapper"><property name="proxyUserName"><value>${external.authentication.proxyUserName}</value></property><property name="proxyHeader"><value>${external.authentication.proxyHeader}</value></property><property name="active"><value>${external.authentication.enabled}</value></property><property name="userIdPattern"><value>${external.authentication.userIdPattern}</value></property><property name="personService"><ref bean="PersonService"/></property></bean>