The default session timeout for a WebObjects application is 3600 seconds (1 hour). You can extend this timeout to a maximum of 28800 seconds (8 hours) using the -WOSessionTimeOut
argument in JavaMonitor.
How to Set -WOSessionTimeOut
in JavaMonitor
Open JavaMonitor in your browser (typically:
http://localhost:56789
).Navigate to your Application.
Click Configure on the desired instance or application settings.
Locate the field labeled Additional Arguments.
Add or update the argument:
-WOSessionTimeOut=10800
(This sets the session timeout to 3 hours. Adjust as needed, up to a maximum of 28800 seconds.)
Save the changes and restart the application instance for the new timeout to take effect.
Example:
If you want to maintain the default timeout:
-WOSessionTimeOut=3600
To extend it to 8 hours:
-WOSessionTimeOut=28800