Hi there -- does anyone have some thoughts on why:
@Persist @InitialValue("new java.util.HashSet()") public abstract Set<Long> getFollowUpMessages(); public abstract void setFollowUpMessages(Set<Long> set); keeps on resetting the set to a new HashSet between http requests? It looks like according to the @Persist documentation this is the correct way to set an initial value if there is no value already in the session. But it seems not to be the case... -Pat