private boolean authenticateWithServer_Carbon_CurrentVersion(ServerDO server) {
boolean isLoggedIn = false;
try {
AuthenticationAdminClient_3_2_0 authenticationAdminClient = new AuthenticationAdminClient_3_2_0(server.getServerURL());
isLoggedIn = authenticationAdminClient.authenticate(server.getUserName(), server.getPassword());
if (isLoggedIn) {
String sessionCookie = authenticationAdminClient.getSessionCookie();
getSessionCache().addSessionString(server.getServerURL(), sessionCookie);
}
} catch (Throwable ignore) {
if (log.isDebugEnabled()) {
log.debug("Authentication failed with server: " + server.toString(), ignore);