* @return
* @throws IOException
* @throws ClassNotFoundException
*/
static public Object deserialize(Packet response, ClassLoader cl) throws IOException, ClassNotFoundException {
ObjectInputStreamExt is = new ObjectInputStreamExt(new PacketToInputStream(response), cl);
Object rc = is.readObject();
is.close();
return rc;
}