JAS Grid Timeoput

gerd_renz3

VIP Member
Hi List,
I have a small problem with JAS timeout: when the user does a select and goes through the grid for whatever she has to do and then waits too long to page down, the grid becomes invalid and she gets an error message. She will have to do a new Find and loses work.
I am sure this is some kind of timeout and hope it can be configured.
Can anyone point me to which of the many timeout values I have to tweek in JDE.INI to give the user more time? All our values are standart and our timeout seems to be between 1 and 5 minutes.
We are on W2K-JAS, W2K ES with Oracle.
Thanks in advance, Gerd
 
You will need to modify your jas.ini file. By default the timeout is set to 1 minute.

You will need to change the ResultSet parameter as shown below. Then restart the JAS server. N.B. an increased above 3 minutes could have a knock on effect on performance.



[CACHE]

# These intervals are in milliseconds. For example, 60000ms = 1 minute

UserSession=1200000

ResultSet=180000 #3 minutes

CacheCheck=60000
 
Thanks for the quick answer, FriedChicken. I will check out your sugestion.
What kind of performance impact would I have to expect? How is this connected with performance anyway? Just curious.

Thanks, Gerd
 
Each ResultSet is another connection to the database and is kepted open UNTIL the timeout occurs. This is linked to the maxconnections setting in the jde.ini file.
 
Back
Top