ReplicationStream stream =
new ReplicationStream(new java.io.ByteArrayInputStream(data),
getClass().getClassLoader());
Object myobj = stream.readObject();
if ( myobj != null && myobj instanceof SessionMessage ) {
SessionMessage msg = (SessionMessage)myobj;
//remove when checking in
perfMessageRecvd(msg.getTimestamp());
String name = msg.getContextName();
//check if the message is a EVT_GET_ALL_SESSIONS,
//if so, wait until we are fully started up
if ( name == null ) {
java.util.Iterator i = managers.keySet().iterator();
while ( i.hasNext() ) {