01-15-2010 01:00 PM
authentication.chain=ssl-headers:external
alfresco/extension/subsystems/Authentication/external/ssl-headers/ssl-headers.propertiesexternal.authentication.enabled=1
external.authentication.proxyUserName=
external.authentication.defaultAdministratorUserNames=jamie
external.authentication.proxyHeader=HTTP_SSLCLIENTCERTSUBJECT
external.authentication.userIdPattern=^(jamie)
01-21-2010 01:31 PM
Matcher matcher = this.userIdPattern.matcher(userId);
if (matcher.matches())
{
userId = matcher.group().trim();
}
Matcher matcher = this.userIdPattern.matcher(userId);
if(matcher.find()) {
userId = matcher.groupCount() > 0 ? matcher.group(1) : null;
}
01-25-2010 12:43 PM
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.