Session time out handling

Hi,

I am working on a Vaadin project. Can any one help me understanding following items?

How is session time out managed in Vaadin?
User may spend more than 30 minutes by editing some content in the webpage without making any explicit server call. Will a session time out happens if there is no explicit server call. If it happens, how can I extend session time out by handling user actions on the page

Regards
Vishal G

You could just configure your server to use longer session timeout. Or you could use one of the add-ons designed to resolve this:
http://vaadin.com/addon/smartsessions
or
http://vaadin.com/addon/sessionguard
.

Thanks Joonas…I am looking in to that link