ByteArrayInputStream bis = null;
Loader loader = null;
ClassLoader classLoader = null;
ObjectInputStream ois = null;
byte[] buf = new byte[5000];
ReplicationWrapper repObj = null;
for(int i=0; i < objs.length;i++) {
try {
bis = new ByteArrayInputStream(buf);
repObj = (ReplicationWrapper)objs[i];
buf = repObj.getDataStream();
bis = new ByteArrayInputStream(buf, 0, buf.length);
if (container != null)
loader = container.getLoader();