o.close();
ByteArrayInputStream is = new ByteArrayInputStream(s.toByteArray());
ObjectInputStream io = new ObjectInputStream(is);
MessageImpl nImpl = (MessageImpl) io.readObject();
o.close();
ExampleObject foo = (ExampleObject) nImpl.getBody().get("foo");
assertEquals((foo.getValue() == value.getValue()), true);
names = nImpl.getBody().getNames();
assertNotNull(names);
assertEquals(names.length, 2);
/*