Windows error 0x800C0008, -2146697208

Detailed Error Information

INET_E_DOWNLOAD_FAILURE[1]

MessageThe download of the specified resource has failed.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode12 (0x00c)
NameFACILITY_INTERNET[2][1]
DescriptionThe source of the error code is Wininet related.[2][1]
Error Code8 (0x0008)

Questions

5votes
1answer

Ajax POSt not working in IE11

I have a button in my webpage which calls an ajax method a s below $.ajax({ cache: false, type:'POST', data: 'type='+userType +'&user='+user , url:' ".\yii\helpers\Url::to([$program.'/'.$url.'/setcustomer/'])." ', success: function(data) { console.log('Hii'); $('#phoneErr').html(data); } }); This works in all browsers except IE11 I get the following error when i click on the [...] read more
ajax
redirect
yii2
internet-explorer-11
5votes
2answers

c#/.Net Socket.Shutdown

I recognize this type of question has a long history, but the way I am using this must be the correct '.net way' and yet it does not seem to work. I have a trivial synchronous IP server daemon that does a simple AcceptSocket, do some stuff, socket.send, socket.shutdown, socket.close. [...] read more
c#
.net
sockets
3votes
1answer

WinJS.xhr error while executing second time

Test sample http://code.msdn.microsoft.com/windowsapps/Getting-started-with-310271df I am facing some absurd issue with WinJS.xhr call. Below sample if you run it works for the first time. However, next time onwards it gives this error! Exception is about to be caught by JavaScript library code at line 2351, column 21 in ms-appx://microsoft.winjs.1.0/js/base.js 0x800c0008 - [...] read more
javascript
windows-store-apps
winjs
1vote
0answers

URLDownloadToFile function returns INET_E_DOWNLOAD_FAILURE on Windows XP

I've compiled a Win32 console app in C++ that at some point attempts to download a file from a URL. Built on Visual Studio 2019 and Windows 10, it targets a Windows XP 2002 SP3 system (compiled using the Visual Studio 2015 - Windows XP v140xp Platform Toolset). The app [...] read more
c++
winapi
windows-xp
1vote
4answers

Yii2 jQuery not working in IE11

THE PROBLEM I'm trying to create a page that updates a specific records field in a table when a checkbox is clicked (ideally without refreshing the page). I thought jQuery/AJAX would work for me. Apparently not. I've been struggling with this for a while, so I decided to scale it [...] read more
jquery
yii2
internet-explorer-11
1vote
1answer

URLDownloadToFile fails with 0x800c0008 (INET_E_DOWNLOAD_FAILURE) depending on length of URL

I'm aware there is a similar question here. However my symptoms differ. There seems to be some kind of URL length restriction in place that I couldn't find documented. The limit seens to be 2084 (sic! not 2048!) characters in the URL. The easiest repro is just a console application [...] read more
c++
winapi
urlmon
1vote
1answer

jQuery ajax response not working in IE11

I'm trying to create a loginpage with jQuery/AJAX, my code work well in other browser but i have a problem in IE11. IE11 throw an exception SCRIPT7002: XMLHttpRequest: Network Error 0x800c0008, The download of the specified resource has failed. Code $.ajax({ type: 'post', url: $('#form-login').attr('action'), data: $('#form-login').serialize(), success: function (data) [...] read more
javascript
jquery
ajax
internet-explorer-11
1vote
1answer

flash cant shown in webBrowser

I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
winforms
internet-explorer-8
c#-2.0
0votes
1answer

User cannot RSS with IE

One of my users cannot work with RSS feeds. The problem was originally noticed with Outlook (where we get error 0x800C0008), but we can reproduce the problem with Internet Explorer * Calling any RSS feed URL in IE results in "The download of this feed was interrupted". We even created [...] read more
windows-server-2008-r2
internet-explorer
0votes
1answer

URLDownloadToFile fails with code 0x800c0008 (INET_E_DOWNLOAD_FAILURE)

I'm trying to use URLDownloadToFile to download a file, but am getting INET_E_DOWNLOAD_FAILURE after the file is partially downloaded. My call looks like: HRESULT hRes = ::URLDownloadToFile( NULL, strTemp, strDestination, 0, pCallback ); strTemp gives the URL in the form: https://// pCallback is an implementation of IBindStatusCallback, IHttpSecurity, and IWindowForBindingUI. [...] read more
windows
https
download

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0