public static LdapConnection getConnectionAs( DirectoryService dirService, Dn dn, String password ) throws Exception
{
Object connectionObj = LdapConnectionFactory.getCoreSessionConnection();
LdapCoreSessionConnection coreConnection = ( LdapCoreSessionConnection ) connectionObj;
coreConnection.setDirectoryService( dirService );
coreConnection.bind( dn, password );
return coreConnection;
}