// create the non-admin user
createUser( "billyd", "billyd" );
// try a search operation which should fail without any ACI
LdapConnection userCtx = getConnectionAs( "uid=billyd,ou=users,ou=system", "billyd" );
EntryCursor cursor = userCtx.search( "ou=users,ou=system", "(ObjectClass=*)", SearchScope.SUBTREE,
"userPassword" );
int counter = 0;
while ( cursor.next() )
{