look at these parameters in httpd.conf
http://httpd.apache.org/docs/1.3/mod/core.html#keepalive
specifically
#The TimeOut directive currently defines the amount of time Apache will wait
for three things:
#~The total amount of time it takes to receive a GET request.
#~The amount of time between receipt of TCP packets on a POST or PUT
request.
#~The amount of time between ACKs on transmissions of TCP packets in
responses.
#you may want to increase this value to
Timeout 300
#KeepAlive implies that dynamic content such as CGI output, SSI pages, and
server-generated directory listings will generally NOT #use KeepAlive
connections to HTTP/1.0 clients since the length must be known before
transmission
KeepAlive On
#The MaxKeepAliveRequests directive limits the number of requests allowed
per connection when KeepAlive is on. If it is set to "0", #unlimited
requests will be allowed. We recommend that this setting be kept to a high
value for maximum server performance. In
#Apache 1.1, this is controlled through an option to the KeepAlive
directive.
#I would advise setting this to 0
MaxKeepAliveRequests 0
#The number of seconds Apache will wait for a subsequent request before
closing the connection. Once a request has been received, #the timeout value
specified by the Timeout directive applies.
#Setting KeepAliveTimeout to a high value may cause performance problems in
heavily loaded servers. The higher the timeout, the #more server processes
will be kept occupied waiting on connections with idle clients.
#If your process load is high set this parameter lower
#If your process load is low set this parameter higher
KeepAliveTimeout 15
Viel Gluck,
Martin-
----- Original Message -----
From: "hv @ Fashion Content" <[EMAIL PROTECTED]>
To: <users@tomcat.apache.org>
Sent: Friday, December 02, 2005 7:39 AM
Subject: When does 408 happen ?
I get:
HTTP Status 408 - The time allowed for the login process has been
exceeded. If you wish to continue you must either click back twice and
re-click the link you requested or close and re-open your browser
Will it happen when a JSESSION cookie is on the client, but no longer on
the server?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]