return deSerializeObjectFromStream(bis);
}
protected Object deSerializeObjectFromStream(ByteArrayInputStream bis) throws Exception
{
AMFDeSerializer serializer = new AMFDeSerializer(SerializationContext
.getSerializationContext());
Object o = null;
try
{
// do the deserialization.
o = serializer.fromAmf(bis);
LOG.trace("Serialized object: {}",o);
bis.close();
}
catch (IOException e)
{