Windows error 0x80072EE4, -2147012892

Detailed Error Information

WININET_E_INTERNAL_ERROR[1]

MessageAn internal error occurred in the Microsoft Internet extensions
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code12004 (0x2ee4)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00002ee4.

Questions

7votes
5answers

Windows 8 Blank App + DEP0700 error

I've found a few posts mentioning this error, but none that have helped. I created a new C# Windows Store project, and when I try to build and run it on the simulator, I get the following error in visual studio: Error 1 Error : DEP0700 : Registration of the [...] read more
c#
visual-studio
windows-8
windows-store-apps
windows-store
6votes
1answer

UWP Background Transfer exception 0x80072EE4 after Windows Update 1703

I have a Windows Store app with Background Transfer to download contents and it is working well until now. However, a few customers report that after they update their PC to Creators Update (1703), the downloads stop working giving an error like HRESULT: 0x80072EE4 (which is translated from an exception [...] read more
exception
uwp
background-transfer
creators-update
4votes
2answers

How to reset the Windows Push Notification Platform?

For my user account, the Windows Push Notification Platform seems to be messed up. I have the following symptoms: * In the Settings charm, Notifications is grayed out. The tool-tip is Turned off by Group Policy. * Visual Studio fails to install an app that is capable of toasts and [...] read more
windows-8
notifications
windows-store-app
live-tiles
4votes
2answers

HRESULT 0x80072EE4 when using BackgroundDownloader

Every time when I call CreateDownload on a BackgroundDownloader in my C# code for a Windows Store application, I get the following exception: Exception from HRESULT: 0x80072EE4. I have declared all necessary capabilities in my package file. Example This code breaks when CreateDownload() is called: public static async void DownloadFile(string [...] read more
c#
windows-8
windows-store-apps
visual-studio-2013
2votes
2answers

WPF - Exception when load a image by URL

I have a problem with downloading a image by URL into a BitmapImage. On some workstations this is not working. I dont know why ... For example, on my own workstation, this works fine. Same OS, same network. Well .. I have a little code which loads some images from [...] read more
c#
.net
wpf
image
bitmap
1vote
1answer

C# UWP HttpWebResponse Chunked

I have problem with read stream Response because I can't read response to end. This is respon from Server : Server : "Apache-Coyote/1.1" Transfer-Encoding : "chunked" Content-Type: "multipart/mixed; boundary=F34D3847AEDEB14FF5967BF7426EECF6" I try read this response : var response = (HttpWebResponse)await httpWebRequest.GetResponseAsync(); using(var read = new StreamReader(response.GetResponseStream()) { var result = await [...] read more
c#
windows
uwp
httpwebresponse
chunked
0votes
0answers

WPF Image Resizing error: System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x80072EE4

The code below is throwing error: > System.Runtime.InteropServices.COMException: Exception from HRESULT: > 0x80072EE4 on code line: Dim bdDecoder As BitmapDecoder = BitmapDecoder.Create(streamPhoto, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.None) Why? The requested URL exists and returns a 200. Google is not helping on this one. Private Sub ResizeAndSave(ByVal imageURL As String) Dim imgRequest As WebRequest [...] read more
wpf
image-processing
comexception
0votes
1answer

Azure Role, Media Foundation, COMException 0x80072EE4 in MFCreateSourceReaderFromURL() when opening media URI

Occurs only on Azure Web or Worker role and only when trying to process a media from Internet by passing a URI to MFCreateSourceReaderFromURL() method. Local media files are opened and processed successfully. Under Azure Emulator both local and remote files are opened successfully as well. read more
azure
ms-media-foundation

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