Foros de discusión

Liferay session timeout change

Subhash S Chandran, modificado hace 14 años.

Liferay session timeout change

New Member Mensajes: 13 Fecha de incorporación: 28/08/08 Mensajes recientes
We changed the timeout value in web.xml from 30 to 43200. Now we are getting this message every one minute, and Liferay logs me out after that (if I don't extend the session). This happens in Firefox 3.0.3 in Linux environment when using Liferay 5.1.2. Same instance tested in IE6 works fine.

Archivos adjuntos:

thumbnail
Aarti Jain, modificado hace 14 años.

RE: Liferay session timeout change

Regular Member Mensajes: 116 Fecha de incorporación: 2/09/08 Mensajes recientes
Hi,

You can try putting following properties in portal-ext.properties:

session.timeout=5
session.timeout.warning=0
session.timeout.auto.extend=true

This will automatically extend your session.

You will not face problem by changing the value in web.xml, if the value is small.


Regards,
Aarti
Life Ray, modificado hace 14 años.

Extends not working

New Member Mensajes: 13 Fecha de incorporación: 14/10/08 Mensajes recientes
hi,

I have exactly the same configuration - :

session.timeout=5
session.timeout.warning=0
session.timeout.auto.extend=true


I use the ext environment and put them into the portal-ext.properties. BUT if the user without closing the browser or something else waits longer than five minutes he must login again. I thought it is the last property that should handle this - automatically extending the session.

Working setup:
- Liferay 5.2.2 from SVN
- Build from ext-environment
- FireFox 3 / OS Windows Vista

Can you explain this behavior?

Thanks a lot.
thumbnail
Aarti Jain, modificado hace 14 años.

RE: Extends not working

Regular Member Mensajes: 116 Fecha de incorporación: 2/09/08 Mensajes recientes
Hi,

This is working fine with liferay 5.1.2 and liferay 5.2.1. This type of behavior was never seen.

Never used it with liferay 5.2.2.

Regards,
Aarti Jain
Impetus Infotech Pvt. Ltd.
Noida
Life Ray, modificado hace 14 años.

RE: Extends not working

New Member Mensajes: 13 Fecha de incorporación: 14/10/08 Mensajes recientes
thanks for the quick reply - I have no idea. after 5 min. the user must login again ?!? have you a hint where to look in the implementation to figure out if something changed?
thumbnail
Victor Zorin, modificado hace 14 años.

RE: Extends not working

Liferay Legend Mensajes: 1228 Fecha de incorporación: 14/04/08 Mensajes recientes
Funny enough, but to make auto.extend working, you would have to make
session.timeout.warning=1

The auto extension function is written in
docroot/html/common/themes/session_timeout.jsp (session_timeout.jspf for 5.2.2)

Search for SESSION_TIMEOUT_EUTO_EXTEND.


We usually make session length of 8 hours and then autoextend
# 10hrs
session.timeout=600
session.timeout.warning=1
session.timeout.auto.extend=true
Life Ray, modificado hace 14 años.

RE: Extends not working

New Member Mensajes: 13 Fecha de incorporación: 14/10/08 Mensajes recientes
Thanks a lot. Now it is working in the desired way. I am wondering about something - I set session.timeout.warning to 0 because I do not want that the user is informed about this sweet little box on the top of his browser. but with your described setting I've tested the box never appeared. so because of setting this property now to the value 1 nothing happened. fine for me. but not really transparent.

thx.
thumbnail
Victor Zorin, modificado hace 14 años.

RE: Extends not working

Liferay Legend Mensajes: 1228 Fecha de incorporación: 14/04/08 Mensajes recientes
If auto.extend=true warning does not show.

In regards to why do we need timeout.warning setting, [without analyzing the code] I suspect the reason for it is fairly simple:

- we are dealing with client (browser) and server(webserver), and, abstractly speaking, both of them are "tracking" the timeout. (even if it is the same http session object)

- when client detects that session is about to expire, client makes background call '/c/portal/extend_session' and server is extending the session

If client makes such call exactly at a timeout expiration time, there is a good chance that the timeout would already expire on server end.

So the design by liferay implies that call 'c/portal/extend_session' shall be made earlier, i.e. at warning time, which in your case we set at 1 minute. At this time it is guaranteed that the call would be delivered to the webserver before the actual expiration time.
That's it.
thumbnail
Jonas Yuan, modificado hace 14 años.

RE: Extends not working

Liferay Master Mensajes: 993 Fecha de incorporación: 27/04/07 Mensajes recientes
Hi Victor,

Thank you. This is very useful message, funny enough ...

session.timeout=5
session.timeout.warning=1
session.timeout.auto.extend=true


Jonas Yuan

-----------------
Liferay Books

Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
thumbnail
Jonas Yuan, modificado hace 14 años.

RE: Extends not working

Liferay Master Mensajes: 993 Fecha de incorporación: 27/04/07 Mensajes recientes
The pre-condition is session.timeout.warning.

Only it (session.timeout.warning) is set as 1 as shown in following code, then
session.timeout.auto.extend and session.timeout.redirect.on.expire would get checked.

code in 5.3.
 
[b]<c:if test="<%= sessionTimeoutWarning > 0 %>">[/b]
AUI().use(
'liferay-session',
function(A) {
Liferay.Session.init(
{
[b]autoExtend: &lt;%= PropsValues.SESSION_TIMEOUT_AUTO_EXTEND %&gt;,[/b]
timeout: &lt;%= sessionTimeout %&gt;,
timeoutWarning: &lt;%= sessionTimeoutWarning %&gt;,
[b]redirectOnExpire: &lt;%= PropsValues.SESSION_TIMEOUT_REDIRECT_ON_EXPIRE %&gt;[/b]
}
);
}
);
</c:if>


Thanks

Jonas Yuan
-----------------
The Author of Liferay Books:
Liferay Portal 5.2 Systems Development
Liferay Portal Enterprise Intranets
thumbnail
coffy_ sk, modificado hace 14 años.

RE: Extends not working

Junior Member Mensajes: 26 Fecha de incorporación: 5/06/09 Mensajes recientes
I am sorry for the following stupid question, but:

If I set
session.timeout.warning=1
session.timeout.auto.extend=true


does it mean the session never expire?
If yes there could be one additional property session.timeout.never. It would be less confusing emoticon
Pravin Bansal, modificado hace 14 años.

RE: Extends not working

New Member Mensajes: 4 Fecha de incorporación: 12/03/10 Mensajes recientes
Guys be careful though, while updating your portal-ext.properties.
Any settings written ext properties will not take effect as long as there is a session time out entry in web.xml (of root in tomcat) clean it before you add any session entries to take effect in your portal-ext properties..
Cheer's
Matus Ferko, modificado hace 14 años.

RE: Extends not working

New Member Mensaje: 1 Fecha de incorporación: 3/03/10 Mensajes recientes
There is following configuration in web.xml file in portal sources:
<session-config>
	<session-timeout>30</session-timeout>
</session-config>


Do I have to delete it, to make my configuration from portlet-ext.properties working? If yes it means that value from portal-ext.properties will never take effect. ?!
Pravin Bansal, modificado hace 13 años.

RE: Extends not working

New Member Mensajes: 4 Fecha de incorporación: 12/03/10 Mensajes recientes
Hi Matus,

Certainly you need to delete entries
<session-config>
<session-timeout>30</session-timeout>
</session-config>
from web.xml in order ext properties to take effect for session time out.
Please find me for any further questions.

Thank you,
Pravin
sandhya shendre, modificado hace 13 años.

RE: Extends not working

New Member Mensajes: 5 Fecha de incorporación: 21/01/11 Mensajes recientes
Hi All,

I have set the session-timeout as 30 min in tomcat\conf\web.xml file and 65 min in root\web-inf\web.xml. Which session-timeout value will be taken in consideration?

I'm getting time out message after 30 min.



Regards,
Sandhya Shendre
thumbnail
Fateh al chhabi, modificado hace 13 años.

RE: Extends not working

Junior Member Mensajes: 58 Fecha de incorporación: 1/12/10 Mensajes recientes
Hi sandhya shendre
regarding to your Question :when you add the 65 values in "root\web-inf\web.xml"

This value is always overridden by the value set in tomcat\conf\web.xml under the folder $PORTAL_WEB_INF_HOME
Eswaran R, modificado hace 9 años.

RE: Extends not working

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi friends ....

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R
Eswaran R, modificado hace 9 años.

RE: Extends not working

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi..

my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....

thanks..

Regards

Eswaran.R
thumbnail
amir keshavarz, modificado hace 8 años.

RE: Extends not working

Junior Member Mensajes: 54 Fecha de incorporación: 9/10/10 Mensajes recientes
sandhya shendre:
Hi All,

I have set the session-timeout as 30 min in tomcat\conf\web.xml file and 65 min in root\web-inf\web.xml. Which session-timeout value will be taken in consideration?

I'm getting time out message after 30 min.



Regards,
Sandhya Shendre


My tests show that root\web-inf\web.xml is taken.
Vijay Chandra, modificado hace 11 años.

RE: Extends not working

New Member Mensajes: 8 Fecha de incorporación: 4/04/13 Mensajes recientes
Thanks Pravin to u n u r post ... from past 5 to 6 hrs i was looking fr the solution of how to give user define session time out... recently we migrated to 6.1 from 6.0 ... i was working on with portal-ext.properties by changing the values of session time out .. but it was not effecting ... following u r suggestion i went to web.xml file in
Liferay\bundles\liferay-portal-6.0.6\tomcat-6.0.29\webapps\ROOT\WEB-INF\web.xml and commented out this below lines, for default values of session time out

<session-config>
<session-timeout>30</session-timeout>
</session-config>
and it worked like butter ... thanks man 1ce again ... emoticon
Tor Iver Wilhelmsen, modificado hace 13 años.

RE: Extends not working

Junior Member Mensajes: 60 Fecha de incorporación: 3/12/08 Mensajes recientes
Matus Ferko:
does it mean the session never expire?

No, it means that Javascript will be used to refresh the session via "invisible" calls to the web server. This will continue until the browser window (or tab?) showing the site is closed.
thumbnail
Koen Vermeulen, modificado hace 11 años.

RE: Extends not working

New Member Mensajes: 13 Fecha de incorporación: 16/02/10 Mensajes recientes
Im trying this in 6.1.20 EE

portal-ext.properties:
session.timeout=1
session.timeout.warning=0

I also changed the entry in web.xml to a session timeout of 1

The warning doesnt come up - But the session doenst get expired after 1 minute.
If i take take away the session.timeout.warning property then it does get expired after one minute.

anyone seen this same problem?
Ripal thakkar, modificado hace 10 años.

RE: Extends not working

New Member Mensajes: 14 Fecha de incorporación: 30/06/11 Mensajes recientes
Hi,

did you get any solution on this?

Thanks,
Ripal
Ripal thakkar, modificado hace 10 años.

RE: Extends not working

New Member Mensajes: 14 Fecha de incorporación: 30/06/11 Mensajes recientes
I got it...

In the session_timeout.jsp, liferay checks if sessionTimeoutWarning is greater than 0 (<c:if test="<%= sessionTimeoutWarning > 0 %>">) then only it calls a liferay.session function which takes care for session expiration and all.

By removing this condition in hook , session is expiring.

Regards,
Ripal Thakkar
Eswaran R, modificado hace 9 años.

RE: Extends not working

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi,,,
my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....
thumbnail
Kyrre Myrbostad, modificado hace 14 años.

RE: Extends not working

Junior Member Mensajes: 37 Fecha de incorporación: 21/01/09 Mensajes recientes
Thx for the tip, this fooled me also.

Maybe the text in portal.properties could be changed to something like:

#
# Set the auto-extend mode to true to avoid having to ask the user whether
# to extend the session or not. Instead it will be automatically extended.
# The purpose of this mode is to keep the session open as long as the user
# browser is open and with a portal page loaded. It is recommended to use
# this setting along with a smaller "session.timeout", such as 5 minutes for
# better performance.
#
# Note that session.timeout.warning must be set to 1 for this to work. No warnings will be issued at the client.
#
session.timeout.auto.extend=true
Eswaran R, modificado hace 9 años.

RE: Extends not working

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi,,,

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R
Eswaran R, modificado hace 9 años.

RE: Extends not working

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi,,,

my portlet page using at the time session timeout...

how to solve this error ????

my portlet page idle session timeout but now i am using portlet page at the time session timeout ....
Chris King, modificado hace 14 años.

RE: Liferay session timeout change

New Member Mensajes: 4 Fecha de incorporación: 14/10/08 Mensajes recientes
Is it possible to set session.timeout.auto.extend=true dynamically or for a subset of users or communities? We would like to have anyone with a 10.* IP address auto extend, but if anyone hits the site from outside the firewall hits the site, then we want them to timeout. We are currently running code that looks at the IP address of the user. Is there an API we could call to set this property?
Eswaran R, modificado hace 9 años.

RE: Liferay session timeout change

Junior Member Mensajes: 82 Fecha de incorporación: 29/12/14 Mensajes recientes
hi friends ....

i am using portlet page but tomcat session timeout 30 min ...
so portlet page session timeout ..
how to increase session timeout in portlet page ...

"Warning! Due to inactivity, your session has expired. Please save any data you may have entered before refreshing the page."

how to solve ....???
kindly help me...

Regards ...
Eswaran.R