Update - UK MSDN Nugget Videos Live Gadget

My MSDN Nugget Finder Gadget for Live.com (see this entry) now works in both Firefox and IE. I'd not revisted this until a chance conversation earlier this week with a colleague (thanks Mark) sparked me back into action to fix it. After poking around a bit with the JavaScript Console in Firefox, it looked like the issue related to a cross-domain XMLHttpRequest (as I call out to Mike Taulty's site for the RSS feeds I need). However, this should work in a Live.com gadget using Web.Network.createRequest(). It didn't. I had a hunt around a few other gadgets and ended up changing the proxy setting for Web.Network.createRequest() from RSS to Generic. Woohoo - problem 1 solved. Onto problem 2...

What I'd done turned out to be very stupid indeed but I wasn't seeing an exception being thrown and because I can't find a way to host my gadget running on https://localhost in Firefox, it makes the whole debugging experience, well, how should I put this.... Let's just say "Less than rewarding".

Having removed some exception handling, hey presto, I was now getting various errors related to my parsing of the RSS feed for the Nuggets. I'd not even thought about this before because the gadget displayed the Nugget Topics fine in Firefox (also from RSS). However, the "Nuggets" RSS feed is slightly different from the "Topics" feed as it contains some extra information about each Nugget in a separate namespace. I couldn't get Start.Parser.ParseRssResponse() to pick this up so added some extra XML parsing based on selectNodes(), selectSingleNode(). These, of course are implemented in MSXML which, of course, isn't available in Firefox. Therein lies the problem.

So a few hours trying to figure out how to achieve the same thing with the Mozilla APIs and hey presto. I wont pretend it was simple. I wont pretend I didn't tear my hair out and set it on fire. I wont pretend the cat still likes me. But I did get it done.

Add this link https://www.mikeo.co.uk/gadgets/msdnnuggetfinder_mikeo.xml to your Live.com page to get easy access to the MSDN Nuggets in IE or Firefox.