URL url2 = getClass().getResource( "LdifFileLoader2.ldif" );
String file = url.getFile();
String file2 = url2.getFile();
LdifFileLoader loader = new LdifFileLoader( service.getAdminSession(), file );
int count = loader.execute();
loader = new LdifFileLoader( service.getAdminSession(), file2 );
count = loader.execute();
// Try to modify the entry with the created user
LdapConnection cnx = getConnectionAs( "uid=READER ,ou=users,ou=system", "secret" );
Entry res = cnx.lookup( "uid=READER ,ou=users,ou=system" );