How do I avoid app timeouts? I have an app which is a REST services behind a web client. Sometimes, users will let it sit for a long time, and when they get back to it, it has ended their session.I've tried a few things:The client pinged a REST endpoint every 60 secondsThat didn't work, so I had it just ping the home page of the UI insteadI'm begnning to think I need a Java Action to callCore.getCurrentSession().keepAlive() Before I do this, am I on the right track?