How to increase the session time

basith7861

Active Member
Hello every one
Any one knows how to increase the session in jde web browser...
Thanks in Advance
 
Increase the UserSession=3D3600000 (milli secs) =3D 60mins in jas.ini file.



60=2C000 =3D 1 min





To: [email protected]
From: [email protected]
Subject: How to increase the session time
Date: Sun=2C 21 Feb 2010 19:13:36 -0600

Hello every one
Any one knows how to increase the session in jde web browser...
Thanks in Advance
 
For user session timeout , you will need to set parameter in JAS.INI (app server)and HTTPD.conf (HTTP server)
files .

1) JAS.INI
================================
[CACHE]
# value is in milliseconds.
#like 3600000ms= 1 hour
UserSession=3600000
=========================

2) IBM HTTP Server (httpd.conf)
# the value is in seconds format
Timeout 3600

Restart the both JAS and HTTP services.

Note: The JAS.INI setting(s) and HTTP Server settings for timeout should be set a greater value than the timeout setting in WebSphere Application Server.
This will avoid record locking issue with app server.
Example: you can se WebSphere timeout setting for 30 minutes session(JAS.ini) and HTTP server timeout set for 1 hour.
 
[ QUOTE ]
For user session timeout , you will need to set parameter in JAS.INI (app server)and HTTPD.conf (HTTP server)
files .

1) JAS.INI
================================
[CACHE]
# value is in milliseconds.
#like 3600000ms= 1 hour
UserSession=3600000
=========================

2) IBM HTTP Server (httpd.conf)
# the value is in seconds format
Timeout 3600

Restart the both JAS and HTTP services.

Note: The JAS.INI setting(s) and HTTP Server settings for timeout should be set a greater value than the timeout setting in WebSphere Application Server.
This will avoid record locking issue with app server.
Example: you can se WebSphere timeout setting for 30 minutes session(JAS.ini) and HTTP server timeout set for 1 hour.

[/ QUOTE ]


Can someone prove to me that changing the HTTP timeout actually affects anything in the E1 web app?
 
Please refer SOLUTION 200947926 E1: JAS: Configure inactive timeout for JAS with WebSphere.
 
On the Oracle Application Server side, this is how I have had to adjust the timeout setting....go to the following location(s)

\\<jasservername>\e$\product\10.1.3.1\OracleAS_1\j2ee\dvj2ee\applications\dv81\webclient\WEB-INF\web.xml

Do this for each path code/container. i.e. DV, PY, PD, PS, etc

WEB.XML doc – scroll down to where it looks like below and add the text that says session timeout. The value can be set to what you like and its value is in mins, so in my example the session timeout is 2 hours.

...
<servlet>
<servlet-name>MOViewerServlet</servlet-name>
<display-name>MOViewerServlet</display-name>
<servlet-class>com.peoplesoft.e1.container.MafletServiceContainer</servlet-class>
<init-param>
<param-name>maflet.name</param-name>
<param-value>MOViewerServlet</param-value>
</init-param>
</servlet>

<session-config>
<session-timeout>120</session-timeout>
</session-config>
 
Back
Top