new ByteArrayOutputStream(), OMConstants.DEFAULT_CHAR_SET_ENCODING);
envelope.serialize(output);
//now the OM is fully created -> test the navigation
OMNavigator navigator = new OMNavigator(envelope);
OMSerializable node = null;
while (navigator.isNavigable()) {
node = navigator.next();
assertNotNull(node);
}
}