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
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
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
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
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
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
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
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