mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged V2.0 to HEAD
5450: (from V1.4) 5423 (V1.4): CIFS authentication 5451: (from V1.4) 5432 (V1.4): 'No root node' fix 5437 (V1.4): EHCache upgrade 5440 (V1.4): AR-1355 - Ticket cache config fix 5442 (V1.4): Bootstrap reorganization 5446 (V1.4): AR-1353 5452: (from V1.4) 5391: AR-1310 (script rename fix) 5453: Win32NetBIOS LANA 5454: CIFS unused code git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5483 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1254,20 +1254,39 @@ public class ServerConfiguration extends AbstractLifecycleBean
|
||||
String lanaStr = elem.getAttribute("lana");
|
||||
if (lanaStr != null && lanaStr.length() > 0)
|
||||
{
|
||||
|
||||
// Validate the LANA number
|
||||
|
||||
// Check if the LANA has been specified as an IP address or adapter name
|
||||
|
||||
int lana = -1;
|
||||
|
||||
try
|
||||
|
||||
if ( IPAddress.isNumericAddress( lanaStr))
|
||||
{
|
||||
lana = Integer.parseInt(lanaStr);
|
||||
}
|
||||
catch (NumberFormatException ex)
|
||||
{
|
||||
throw new AlfrescoRuntimeException("Invalid win32 NetBIOS LANA specified");
|
||||
|
||||
// Convert the IP address to a LANA id
|
||||
|
||||
lana = Win32NetBIOS.getLANAForIPAddress( lanaStr);
|
||||
if ( lana == -1)
|
||||
throw new AlfrescoRuntimeException( "Failed to convert IP address " + lanaStr + " to a LANA");
|
||||
}
|
||||
else if ( lanaStr.length() > 1 && Character.isLetter( lanaStr.charAt( 0))) {
|
||||
|
||||
// Convert the network adapter to a LANA id
|
||||
|
||||
lana = Win32NetBIOS.getLANAForAdapterName( lanaStr);
|
||||
if ( lana == -1)
|
||||
throw new AlfrescoRuntimeException( "Failed to convert network adapter " + lanaStr + " to a LANA");
|
||||
}
|
||||
else {
|
||||
|
||||
try
|
||||
{
|
||||
lana = Integer.parseInt(lanaStr);
|
||||
}
|
||||
catch (NumberFormatException ex)
|
||||
{
|
||||
throw new AlfrescoRuntimeException("Invalid win32 NetBIOS LANA specified");
|
||||
}
|
||||
}
|
||||
|
||||
// LANA should be in the range 0-255
|
||||
|
||||
if (lana < 0 || lana > 255)
|
||||
@@ -2265,8 +2284,8 @@ public class ServerConfiguration extends AbstractLifecycleBean
|
||||
{
|
||||
// Check if the appropriate authentication component type is configured
|
||||
|
||||
if ( ntlmMode != NTLMMode.NONE)
|
||||
throw new AlfrescoRuntimeException("Wrong authentication setup for passthru authenticator (can only be used with LDAP/JAAS auth component)");
|
||||
if ( ntlmMode == NTLMMode.MD4_PROVIDER)
|
||||
throw new AlfrescoRuntimeException("Wrong authentication setup for passthru authenticator (cannot be used with Alfresco users)");
|
||||
|
||||
// Load the passthru authenticator dynamically
|
||||
|
||||
|
Reference in New Issue
Block a user