H1N1 Flu (Swine Flu) Web Slice step-by-step

Creating Web Slices is extremely easy and fast, and at the same time it can provide amazing results. In this post I will show how the Swine Flu Web Slice has been created (in less then one hour!). The full project with source code is provided at the end of this post.

clip_image002

Before starting, you need a website (unless you already have one). For the sake of this scenario, we will use Microsoft Visual Web Developer 2008 Express Edition to create an ASP.Net Web Application.

Step 0: Define the Architecture

IE8 Web Slices development is described in detail in this MSDN Article. In this scenario we want to have full control over the Web Slice content, so we will use an Alternative Display Source. We also want to customize the update and notification mechanism, so we will implement an Alternative Update Source. The overall architecture looks like this:

Alternative display and update graphic.

Step 1: Creating the Preview page (aka Alternative Display Source)

The first step is creating a standard web page (Default.aspx ), that will be used by IE8 for the Web Slice preview; the content of this page can be pure HTML, CSS, JavaScript…but also Silverlight or any other ActiveX available on the machine.

In talking with the CDC (Centers for Disease Control and Prevention) and the WHO (World Health Organization), they available made two data feeds:

Those feeds are downloaded and parsed in the code behind of the page, as follows:

 private static DateTime GetLastRssUpdate()
 {
     using (WebClient client = new WebClient())
     {
         string content = Encoding.ASCII.GetString(client.DownloadData(Rss_Feed));
  
         XmlDocument rssDoc = new XmlDocument();
         rssDoc.LoadXml(content);
  
         HttpContext.Current.Cache.Insert("SwineFluRssFeed", content);
  
         return DateTime.Parse(rssDoc.SelectSingleNode("/rss/channel/item")["pubDate"].InnerXml);
     }
 }

Note that we are caching the feed on the server side, in order to improve the network performance. Once we have the data, we can use the ASP.Net Framework and LINQ to bind the data to our UI.

 private void BindRssFeed()
 {
     string content = Cache.Get("SwineFluRssFeed") as string;
     XDocument rssFeed = XDocument.Parse(content);
     rssList.DataSource = (from item in rssFeed.Descendants("item")
                           select new
                           {
                               Text = Short((string)item.Element("description")),
                               Url = (string)item.Element("link")
                           }).Take(5);
     rssList.DataBind();
 }

 

Step 2: Creating the Update page (aka Alternative Update Source)

The second step is to customize a few properties of the web slices and define the logic that will notify the user when there is an update.

In order to do this, we will use a second page (SliceUpdate.aspx ).

 <body>
     <div class="hslice" id="SwineFlu">
         
         <div class="entry-title" style="display: none">
             Swine Flu Updates
         </div>
         
         <a href="https://visitmix.com/WebSlices/SwineFlu" rel="entry-content" style="display: none" />
         
         <a href="https://www.cdc.gov/swineflu/" rel="Bookmark" style="display: none" target="_blank" />
         
         <span class="ttl" style="display: none">15</span>
         
         <div class="entry-content" runat="server" id="updateTrigger">
         </div>
                 
     </div>
 </body>

Let’s have a look more in detail to each section of the body:

  • class=”hslice” id=”SwinFlu” : by setting this specific CSS tag and an unique id, IE8 will recognize and threat this section of the page as a web slice.
  • entry-title: define the title of the web slice, that will be visible in the Favorites Bar.

image

  • <a rel=”entry-content” : this page, defined in the previous step, will be used for the preview window.
  • <a rel=”Bookmark” : IE8 will open this link when the user clicks on the blue arrow.

 image

  • <span class=”ttl”>15</span> : we are setting an update interval of 15 minutes.
  • <div class=”entry-content”>…</div> : IE8 (in the background) will download the SliceUpdate.aspx page every 15 minutes. If the content inside this div element is updated, the title of the web slice in the Favorites Bar will blink and will become bold. In this scenario, this div contains only the DateTime of the last tweet or post (from the two feeds); this information is enough to trigger updates and it minimize the bandwidth needed.

image

 

Step 3: Making the Web Slice Discoverable

The last step is to make the web slice discoverable. The CDC will soon include the web slice on their main site; in the meantime, the slice is available on the IE8 Addons Gallery.

image 

The “Add to Internet Explorer” button calls a simple JavaScript function.

  
 <button onclick="window.external.AddToFavoritesBar(
         'https://visitmix.com/WebSlices/SwineFlu/SliceUpdate.aspx#SwineFlu', 
         'Swine Flu Updates', 
         'slice')">
     Add to Internet Explorer
 </button>

Note that the AddToFavoritesBar function point to the Alternative Update Source page followed by the ID of the slice (SliceUpdate.aspx#SwineFlu).

Conclusion and source code

That’s it! With a couple of RSS feeds and a bunch of lines of code we made a very useful web slice!

The best part is that this Web Slice can easily be customized to show any other RSS or Twitter feed! ;-)

imageYou can download the full project with the source code here.

You can preview the slice here.

Happy coding!

SwineFlu_WebSlice.zip