Hi,
What if i have
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
in my deployment descriptor, and along with this, I perform setMaxInactiveInterval(2400) for my session object.
The first one denotes 30 minutes and the second one is 40 minutes. Which one will be followed; that is, how long will my session expire? Will it be 30 or 40 minutes?
What if for example I interchanged the figures -- i have 40 minutes in deloyment descriptor and 30 minutes for setMaxInactiveInterval()?
Thank you very much.