Web parameter: lockWaitTimeout

Web parameters change the behavior of the web clients that connect to the web tier. You can set some of these parameters from the web client login URL, some from the web tier configuration file (web.xml), and some from both.

Parameter

lockWaitTimeout

Description

The lockWaitTimeout parameter prevents a web tier application server thread from waiting infinitely to acquire a lock. After the specified time is reached, the thread ceases trying to acquire a lock, and the user receives the following warning message:

The session is busy, please try again later.

Valid if set from

Web tier configuration file (web.xml)

Requires restart of the web applications server?

Yes

Default value

15 seconds

Possible values

1-300 seconds (A value of less than or equal to 0 will indicate the maximum value 300 is used)

Example usage

<init-param>
  <param-name>lockWaitTimeout</param-name>
  <param-value>15</param-value>
</init-param>