public void testPlainSeriazable() throws Exception
{
log_.info("testPlainSerializable() ....");
// First the flag is set to false
CacheObject co = new CacheObject("1");
cache_.putObject("/test", co);
CacheObject co1 = (CacheObject)cache1_.getObject("/test");
assertNotNull("co on remote cache should not be null", co1);
assertEquals("co should be the same", co.getId(), co1.getId());
}