Questions tagged [http-status-code-408]

The HTTP response status code 408 Request Timeout

The server timed out waiting for the request. According to W3 HTTP specifications: "The client did not produce a request within the time that the server was prepared to wait. The client may repeat the request without modifications at any later time."

See also RFC2616.

26 questions
24
votes
4 answers

Understanding “408 Request Timeout” on Apache with PHP

Issue description - Apache logs I found items similar to this one in the Apache log file: 166.147.68.243 [24/Feb/2013:06:06:25 -0500] 19 web-site.com "-" 408 - "-" I’ve got custom log format and 408 here stands for status. The log format…
Victor Smirnov
  • 3,450
  • 4
  • 30
  • 49
21
votes
1 answer

HTTP, 408 Request timeout

I have an application, written in C++. This app dispatches a certain info to a script located on a remote website using HTTP POST requests. The app sends requests with a period from several seconds to several minutes. The problem is that after about…
CITBL
  • 1,587
  • 3
  • 21
  • 36
19
votes
2 answers

What is the difference between HTTP 408 and 504 errors?

These are both timeout errors, but who is timing out in a 408 vs. a 504? From w3, 408 is defined as: The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications…
alksdjg
  • 1,019
  • 2
  • 10
  • 26
11
votes
5 answers

Mysterious Http 408 errors in AWS elasticbeanstalk-access_log

The elasticbeanstalk-access_log log-file in our AWS EBS instances are full of 408 errors, like these: 172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] "-" 408 - "-" "-" 172.31.1.56 (-) - - [16/Mar/2016:10:16:31 +0000] "-" 408 - "-" "-" 172.31.1.56…
3
votes
1 answer

Random HTTP 408 on POST requests and no body is transferred

Some time ago we have noticed a number of HTTP 408 in the nginx connections log. All such requests are POST requests with a request time equal to nginx client_body_timeout. We have gathered a tcp dump and decrypt tls traffic. It looks like the…
3
votes
2 answers

HTTP error 408 accessing web service

I am sending a POST request from iPhone to a webservice, which is a REST layer over SOAP. I am getting Error 408 Request Timeout, testing on both the iPhone device and simulator. When testing with the simulator, I noticed that if I access the…
primulaveris
  • 966
  • 14
  • 20
2
votes
0 answers

Bigrquery R package : Error 408 (Request Timeout)

I am using Google BigQuery's API with R thanks to bigrquery R package. I am facing an issue that appears (randomly) when I am using insert_upload_job() function to store my dataset on BigQuery. When I run this function, the red button appears in the…
Remi
  • 961
  • 1
  • 13
  • 25
2
votes
0 answers

Java Authentication Form - Etat HTTP 408 - The time allowed for the login process has been exceeded

we need to authenticate users when they access certain group of web services. For that we use auth-method FORM. When user enters info inside text area and clicks the button, application will try to call a web service. This web service is secured…
jon
  • 910
  • 3
  • 12
  • 34
1
vote
0 answers

Apache log Shows Many 408 Timeout Errors with Very Short Request Times

We have a server running a standard LAMP stack with WordPress. It largely woks fine. I use a custom format string in my Apache config that includes the time taken to process the request at the final field in the access logs. Looking at the access…
Adam
  • 6,539
  • 3
  • 39
  • 65
1
vote
2 answers

http retry for Request Timeout (408)

Using hashicorp go-retryablehttp library (https://github.com/hashicorp/go-retryablehttp) It retries automatically for all 5xx code: retryablehttp performs automatic retries under certain conditions. Mainly, if an error is returned by the client…
sergionni
  • 13,290
  • 42
  • 132
  • 189
1
vote
0 answers

UCMA BeginEstablish timeout on MAC OS with error 408

The code I wrote has been working fine if I try to send an IM to users running Skype for Business on Windows. However, for MAC OS users, they receive empty popup (toast message). I get this exception in my code. {"A 408 (Request Timeout) response…
1
vote
2 answers

Random 408 error on POST request

I'm trying to send a POST request to a website in C#, and then parse the html in the response to get certain item names from it. However, I am getting a 408 error about 50% of the time I run the program. Here is my code (most is taken from here:…
daltonv297
  • 161
  • 5
  • 14
1
vote
1 answer

Http client 408 status code

I am working on building my own http client. I got it working but tried to clean up the code and make it more efficient. No syntax errors or run time errors. However for some reason when I run the program it hangs when it tries to send the first GET…
Javacadabra
  • 5,578
  • 15
  • 84
  • 152
0
votes
0 answers

Troubleshooting "Error 408: Request Timeout" in Initial GET Request

I need to download an xml from an https url, so I tried to access the url with the HttpClient like this: string apiUrl = "https://my-url.com/my_data.xml"; string username = "user"; string password = "pass"; var authValue = new…
Abde
  • 31
  • 4
0
votes
0 answers

AWS S3: Multiple 408 responses in local environment but not on production, while fetching bucket attributes

I am executing multiple iterations of requests to AWS to fetch attributes of various buckets. On my local environment, the first few requests are initially returning with a status code 200 (OK), but thereafter, I encounter multiple status code 408…
1
2