}
web.start();
Identity admin = new Identity("admin","admin");
Reference autoRef = new Reference("http://localhost:8080/R/");
FeedClient client = new FeedClient(autoRef,admin);
Status status = client.create("<feed xmlns='http://www.w3.org/2005/Atom'><title>autoconf</title></feed>");
assertTrue(status.isSuccess());
client.createEntry(
"<entry xmlns='http://www.w3.org/2005/Atom'>" +
"<title>test1 db</title>" +
"<category scheme='http://www.atomojo.org/O/configuration/' term='db'/>"+
"<category scheme='http://www.atomojo.org/O/configuration/db/' term='auth' value='auth'/>" +
"<category scheme='http://www.atomojo.org/O/configuration/db/' term='name' value='test1'/>" +
"<category scheme='http://www.atomojo.org/O/configuration/db/' term='group' value='test'/>" +
"<category scheme='http://www.atomojo.org/O/configuration/db/' term='alias' value='web1'/>" +
"</entry>");
client.createEntry(
"<entry xmlns='http://www.w3.org/2005/Atom'>" +
"<title>testweb1 host</title>" +
"<category scheme='http://www.atomojo.org/O/configuration/' term='host'/>"+
"<content type='text/xml'>" +
"<host name='testweb1' xmlns='http://www.atomojo.org/Vocabulary/Admin/2007/1/0' database='test1'/>" +