Questions tagged [http-status-code-100]

The HTTP response status code 100 Continue

The client should continue with its request. This interim response is used to inform the client that the initial part of the request has been received and has not yet been rejected by the server. The client should continue by sending the remainder of the request or, if the request has already been completed, ignore this response. The server must send a final response after the request has been completed.

See also RFC2616.

22 questions
0
votes
0 answers

How to retrieve the header content when receiving a 100-continue response from a server using Vert.x?

https://jmarshall.com/easy/http/#http1.1c4 We can add any header when sending a 100-continue intermediate response. But we can see in Vert.x code that when he is going to call the continueHandler the response content is ignored, ripped…
igerard
  • 66
  • 5
0
votes
1 answer

How to return Continue Http status code in .NET Core WEB API?

I'm having troubles setting 100 status code on response. I have tried the following way: HttpContext.Response.StatusCode = 100; but it does not work, server refused to answer. Does anybody faced similar issue?
0
votes
1 answer

Stream File to Chome Broken, Firefox Working

I wrote an ASP.Net web page that will take a QueryString and stream a file to the client. The file is stored in a SQL Server database. Everything works great when I'm running the web site locally during development. When I run it in production from…
cjbarth
  • 4,189
  • 6
  • 43
  • 62
0
votes
1 answer

Do I need to spesifically handle HTTP reponse in my PHP script that receives JSON HTTP POST?

I'll try again, as my last question wasn't written well enough. I am writing a PHP script for handling the below JSON HTTP POSTrequest. { "id": "621c46e4-2ca0-4254-a987-fc9e2cc7c552", "mobileNumber": 4799999999, "price": 20.5, "currency":…
0
votes
1 answer

C# Owin Self Host - Expected header 100-continue

We encountered problem using OWIN with selfhosting. We have webserver running from console application. It is NOT running on IIS. HTTP 100-continue specification: http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3 OWIN 100-continue…
0
votes
0 answers

Amazon S3 do not return 100 continue, how?

I want to upload a file to S3. I create a httpconnnection(s3.amazonaws.com), and i send the head={'Date': 'Fri, 18 Jul 2014 03:24:08 +0000', 'Host': 'xx-bucket.s3.amazonaws.com', 'Content-Length': 32, 'Authorization': 'AWS…
user3678248
  • 43
  • 1
  • 6
0
votes
1 answer

curl, play & expect 100 continue header

consider a web service written in play, which excepts POST request (for uploads). now, when testing this with a medium size image (~75K) I've found out a strange behaviour. well, code speaks more clearly than long explanations, so: $ curl -vX POST…
gilad hoch
  • 2,846
  • 2
  • 33
  • 57
1
2