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
0
votes
0 answers

UserPrincipal in Tomcat - HTTP Status 408 – Request Timeout - no error in console

I implemented login system using UserPrincipal in Tomcat. When I press wrong credentials, it correctly redirects to an error page. The problem is with correct data. Every time when I log in using correct data, I am redirected to HTTP Status 408 -…
Dekrate
  • 11
  • 3
0
votes
0 answers

AWS application load balancer is giving 502 for every nginx 408

Our set up is we are using Elastic beanstalk for our django web app on AL2 (which gives nginx as a default reverse proxy out of the box). We are seeing multiple 502 on ALB during peak load and few 502 during non peak load. After deep diving issue we…
0
votes
1 answer

HTTP 408 Request body incomplete

Attempting to make a POST request I am getting the following response: HTTP/1.1 408 Request body incomplete Date: Tue, 19 Jul 2022 07:53:39 GMT Content-Type: text/html; charset=UTF-8 Connection: close Cache-Control: no-cache,…
Gio
  • 1
  • 1
0
votes
0 answers

Dealing with Access-Control-Allow-Origin in a Firebase cloud function

I have a cloud function working on Firebase. The code looks like this: import * as functions from "firebase-functions"; import * as admin from "firebase-admin"; import * as cors from "cors"; import {Response} from "express"; const…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
1 answer

Request to j_security_check return 408 error only with right paramters

I want to send request to j_security_check from servlet and get auth cookie from response. Code: String url = "http://someserver:8080/j_security_check?j_username=user&j_password=qwerty"; HttpURLConnection connection = (HttpURLConnection) new…
Alexander
  • 315
  • 2
  • 10
0
votes
1 answer

408 timeout error with postgraphile on AWS elastic beanstalk

I'm running postgraphile and apollo to get data for my react app. I am using npm concurrently to run the react server and to run postgraph using the CLI including --cors flag. Everything works fine when i run the app locally. When I upload…
0
votes
1 answer

Simulate a HTTP 408?

Is it possible for a server to simulate a http 408 error? A payment processor is trying to send a http post to my website and they say that in their logs a connection is being made but my server is responding with a http 408 after 0.1 seconds. Is it…
Pjn2020
  • 527
  • 1
  • 8
  • 18
0
votes
1 answer

Would Rails' production.log log an HTTP 408 request?

I'm running some Rails servers behind unicorn, which is behind nginx. I can see a handful of POST requests with a status of 408 in nginx's access.log. 123.45.67.890 - - [17/Mar/2016:01:23:45 +1100] "POST /collections/ABC/items/DEFGH HTTP/1.1" 408 0…
Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338
0
votes
1 answer

Multipart data sending got 408 Status

guys. Need help with sending POST request with multipart-data. I have a method to create request on my client side. Here it is: public void sendMultipart(String cmd , Employee emp) { CloseableHttpClient httpClient =…
-1
votes
1 answer

Arduino Esp8266 Response Timeout

I'm trying to test sending HTTP requests from my Arduino. I decided to use Free RESTful web service - http://services.groupkt.com. But something goes wrong and I don't understand what. GET request: GET /country/get/all HTTP/1.1 Host:…
AKS
  • 103
  • 1
  • 1
  • 8
-2
votes
0 answers

How do i solve this git error: RPC failed; HTTP 408 curl 22 The requested URL returned error: 408

Anytime I attemtpt pushing changes to my remote github repo, I encounter this error message: error: RPC failed; HTTP 408 curl 22 The requested URL returned error: 408 send-pack: unexpected disconnect while reading sideband packet fatal: the remote…
1
2