Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I am working on an iOS project.

In this application, I am downloading images from the server.

Problem:

While downloading images I am getting Request Timeout . According to documentation HTTP status code of request timeout is 408 .

But in my application, I am getting HTTP status code 0 with the following error

Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0xb9af710 {NSErrorFailingURLStringKey= http://xxxx.com/resources/p/PNG/1383906967_5621_63.jpg , NSErrorFailingURLKey= http://xxxx.com/resources/p/PNG/1383906967_5621_63.jpg , NSLocalizedDescription=The request timed out., NSUnderlyingError=0x13846870 "The request timed out."}

During a search, over internet, I found no information about HTTP Status Code 0.

Can anyone explain this to me?

May also occur due to Mixed Content developer.mozilla.org/en-US/docs/Web/Security/Mixed_content devasghar Dec 1, 2016 at 13:00 Related posts - HTTP status code 0 - what does this mean for fetch, or XMLHttpRequest? & Does an HTTP Status code of 0 have any meaning? RBT Nov 30, 2018 at 7:39 IE10 has a weird bug, when receiving status code 401 or 403, it interprets it as status code 0. In my head, status code 0 is an error because clearly something is wrong. Gaui Jan 24, 2015 at 0:56 The answer is wrong. Status code 0 exists when browser cannot connect to the server. When you get different errors like e.g. 504 then this is caused by reverse proxy settings. Nickon Apr 10, 2020 at 9:31 The answer is correct. There is no HTTP status code 0. You might see it as return value from an API, but it will not occur inside an HTTP response message. Julian Reschke Apr 10, 2020 at 16:49 @JulianReschke, here it Is not about wishful thinking. devios1's answer obviously gives more detailed information and it is about time the upvotes surpass these here. apingaway Oct 13, 2022 at 7:07

A status code of 0 in an NSHTTPURLResponse object generally means there was no response, and can occur for various reasons. The server will never return a status of 0 as this is not a valid HTTP status code.

In your case, you are appearing to get a status code of 0 because the request is timing out and 0 is just the default value for the property. The timeout itself could be for various reasons, such as the server simply not responding in time, being blocked by a firewall, or your entire network connection being down. Usually in the case of the latter though the phone is smart enough to know it doesn't have a network connection and will fail immediately. However, it will still fail with an apparent status code of 0.

Note that in cases where the status code is 0, the real error is captured in the returned NSError object, not the NSHTTPURLResponse .

HTTP status 408 is pretty uncommon in my experience. I've never encountered one myself. But it is apparently used in cases where the client needs to maintain an active socket connection to the server, and the server is waiting on the client to send more data over the open socket, but it doesn't in a given amount of time and the server ends the connection with a 408 status code, essentially telling the client "you took too long".

Status code '0' can occur because of three reasons
1) The Client cannot connect to the server
2) The Client cannot receive the response within the timeout period
3) The Request was "stopped(aborted)" by the Client.

But these three reasons are not standardized

any source code is applicable to test first two points, you just need an ajax based request. but the 3rd one is happening on canceling the user request, this can be done by abort function in jquery. Hariprasath Yadav Jan 25, 2019 at 5:32

The Response was Empty. Most of the case the codes will stats with 1xx, 2xx, 3xx, 4xx, 5xx.

List of HTTP status codes

From my limited experience, I would say that the following two scenario could cause response status code: 0 , keep in mind; their could be more, but I know of those two:

  • your connection maybe responding slowly.
  • or maybe the the back-end server is not available.
  • the thing is, status: 0 is slightly generic, and their could be more use cases that trigger an empty response body.

    It's an API status, not an HTTP status. If there was no HTTP response, there was no HTTP status code in it. user207421 Aug 13, 2015 at 1:01 Status code 0 does not mean that there is HTTP Response Code but it may be the problem if your server is not available. Ravi Jun 17, 2016 at 6:03

    Sometimes Browser respond to http error handler with Error Object, that have status set to 0, even if you can see 404, 401, 500 etc. error status in network.

    This could happen if your Application and API are on different domains - CORS mechanism is applied. According to CORS for each API request browser sends two requests:

  • preflight OPTIONS request to understand if API allows Actual/Origin request.
  • when API allows (OPTIOS request respond with status 204 and correct Access-Control-Allow-Origin headers) - browser send next "Actual/Origin request".
  • In Application we are handling Error response for "Actual/Origin request", and if "preflight OPTIONS request" failed - browser doesn't give correct HttpError object for http error handler. So to get correct status of http response - be sure to get success preflight OPTIONS request response.

    We got the error:

    GET http://localhost/pathToWebSite/somePage.aspx raised an http.status: 0 error

    That call is made from windows task that calls a VBS file, so to troubleshoot the problem, pointed a browser to the url and we get a Privacy Error:

    Your connection is not private

    Attackers might be trying to steal your information from localhost (for example, passwords, messages, or credit cards). NET::ERR_CERT_COMMON_NAME_INVALID

    Automatically report details of possible security incidents to Google. Privacy policy Back to safety This server could not prove that it is localhost; its security certificate is from *.ourdomain.com. This may be caused by a misconfiguration or an attacker intercepting your connection. Learn more.

    This is because we have a IIS URL Rewrite rule set to force connections use https. That rule diverts http://localhost to https://localhost but our SSL certificate is based on an outside facing domain name not localhost, thus the error which is reported as status code 0. So a Privacy error could be a very obscure reason for this status code 0.

    In our case the solution was to add an exception to the rule for localhost and allow http://localhost/pathToWebSite/somePage.aspx to use http. Obscure, yes, but I'll run into this next year and now I'll find my answer in a google search.

    CORS in my case.

    I had such response in a iOS app once. The solution was the missing Access-Control-Allow-Origin: * in the headers.

    More: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin

    Thanks for contributing an answer to Stack Overflow!

    • Please be sure to answer the question . Provide details and share your research!

    But avoid

    • Asking for help, clarification, or responding to other answers.
    • Making statements based on opinion; back them up with references or personal experience.

    To learn more, see our tips on writing great answers .