* @exception If the connection could not be established.
*/
public static LdapConnection getConnectionAs( DirectoryService dirService, Dn dn, String password )
throws Exception
{
LdapCoreSessionConnection connection = new LdapCoreSessionConnection();
connection.setDirectoryService( dirService );
connection.bind( dn, password );
return connection;
}