Symptoms:
Your log on session is no longer valid. Would you like to log back
in so you can continue working? If you do not log in, any outstanding data
changes in your forms will not be saved.
Your Session has expired, please login again
Solution:
Set the values of the following profile options appropriately. See
Note:171261.1 for details:
ICX:Session TimeoutE.g. From 30 to null (minutes)
ICX: Limit timeE.g. From 10 to 24 (hours)
Remember: When you
refresh or clone Test / Development
environments the setting for
ICX:Session Timeout gets
reset!
Also you can solve the issue in $CONTEXT_FILE
located in directory $APPL_TOP/admin/$CONTEXT_NAME.xml.
<session_timeout
oa_var="s_sesstimeout">1800000</session_timeout>
And set to the appropriate value. Note that s_sesstimeout is in milliseconds
so multiple by (1000*60) to get the time in minutes that is represented in the
profile option.
E.g. if you want to set it to 60 minutes then in the context file put value
60 * 1000 * 60 = 3600000. Either that or just set to null:
<session_timeout
oa_var="s_sesstimeout">1800000</session_timeout>
Then next time you run adconfig.sh (or a patch/clone does) then you won't
have to reset profile options.