I'm working on a web-application which stores some info on the session, this has to stay active for at least 2 hours. ( a bit like a shopping-cart).
I'm working with Apache in front of multiple weblogic instances. The Apache is for caching + just some RR-balancing.
In my web.xml I have configured a session-time out of 120 minutes.
But now I'm wondering about all these Apache settings like the general "Timeout,KeepAlive,KeepAliveTimeout"
and also those that I can specify within the "balance-config", which currently is
SetHandler weblogic-handler
WebLogicCluster serv1:port1,ser2:port2
ConnectTimeoutSecs 10
ConnectRetrySecs 2
KeepAliveEnabled ON
KeepAliveSecs 15
WLCookieName WLBALANCECOOKIENAME
so here I can specify another KeepAliveEnabled / KeepAliveSecs
Do I have to put everything on keepalive=YES and the seconds to 7200+? This make sure my 2 hour session-timeout of web.xml will be respected?
the general "timeout" I can probably put lower because from what I understand this is for long-requests/responds.