 
					
				
		
12-23-2015 06:01 AM
 /* SerializableType.deserialize() method */
  public Object deserialize(byte[] bytes, ValueFields valueFields) {
    ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
    try {
      ObjectInputStream ois = createObjectInputStream(bais);
      Object deserializedObject = ois.readObject();   //***throwing StaskOverflowError***
      return deserializedObject;
    } catch (Exception e) {
      throw new ActivitiException("Couldn't deserialize object in variable '"+valueFields.getName()+"'", e);
    } finally {
      IoUtil.closeSilently(bais);
    }
  }
 
					
				
		
12-23-2015 06:08 AM
 
					
				
		
12-23-2015 06:11 AM
 
					
				
		
12-24-2015 03:09 AM
 
					
				
		
12-24-2015 03:24 AM
 
					
				
		
12-30-2015 07:01 AM
 
					
				
				
			
		
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.