Hi, First, thank you for your quick responses. That is invaluable!
I have looked for a way to check for an expired session, but did not find one. Is the expected usage to wait for and catch an ExpiredSessionException? (org.apache.shiro.session.ExpiredSessionException) How do you feel about being able to check the Session interface to see if is expired? Session session = SecurityUtils.getSubject().getSession(); boolean expired = session.isExpired(); Thank you, Michael
