Entry entry = getPersonEntry( "Bush", "Bush, Kate" );
String dn = "cn=Bush\\, Kate,ou=system";
entry.setDn( new Dn( dn ) );
connection.add( entry );
EntryCursor cursor = connection.search( "ou=system", "(cn=Bush, Kate)", SearchScope.SUBTREE, "*" );
boolean entryFound = false;
while ( cursor.next() )
{