In my Windows 8 app, I have been trying to include a web image in my notification tile. It doesn't work though - my notifications don't appear.
If I go to Control Panel->Administrative Tools->Event Viewer->Applications and Services Logs->Microsoft->Windows->Apps->Microsoft-Windows-TWinUI/Operational, I can see all of my notifications that failed. The error message in the Event View is really unhelpful: "The processing of a tile notification has failed".
If I use a local image, my tile notifications work and appear with the image and text:
var wideContent = TileContentFactory.CreateTileWideSmallImageAndText03();
wideContent.TextBodyWrap.Text = "Some text";
wideContent.Image.Src = "ms-appx:///assets/myLocalImage.gif";
wideContent.RequireSquareContent = false;
var notification = wideContent.CreateNotification();
TileUpdateManager.CreateTileUpdaterForApplication().Update( notification );
If instead I do this:
// All the http web images I have tried have failed
wideContent.Image.Src = "http://upload.wikimedia.org/wikipedia/commons/a/ae/Ursus_arctos_-_Norway.jpg";
My notification doesn't appear. (There are no exceptions or anything - my notification fails to appear in the tile, and an error appears in the Event Viewer.)
Similarly, I can't get the MS example app at http://code.msdn.microsoft.com/windowsapps/App-tiles-and-badges-sample-5fc49148 to work with web images.
Is anyone else experiencing this issue or does anyone know how to resolve it?
EDIT:
The above code is using the NotificationsExtensions library from the MS sample app. I get the same issue using XmlDocument, etc., to build the notification. (Example here: http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868236.aspx )