700 Software
700 Software

Reputation: 87833

Internet Explorer Internet Failure HTTP Status Codes

I usually translate request.status == 0 as being a connection failure.

However, I have found that Internet Explorer sometimes uses HTTP 12007.

What would you recommend be the rules I use when deciding whether to tell the user "Internet Failure" vs just telling them "HTTP Status Code x"?

Is 12007 the only code for this sort of thing? (besides zero)

Upvotes: 6

Views: 4015

Answers (1)

copy
copy

Reputation: 3372

status values above 12000 come from Windows and tell you, that the HTTP request itself failed (ie. there never was a request).

You can find a list of these error messages here.

Upvotes: 7

Related Questions