<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Entries tagged with Phone 7</title>
    <atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Tags/phone-7/RSS"></atom:link>
    <itunes:summary></itunes:summary>
    <itunes:author>Microsoft</itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <image>
      <url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
      <title>Channel 9 - Entries tagged with Phone 7</title>
      <link>http://channel9.msdn.com/Tags/phone-7</link>
    </image>
    <itunes:image href=""></itunes:image>
    <itunes:category text="Technology"></itunes:category>
    <description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
    <link>http://channel9.msdn.com/Tags/phone-7</link>
    <language>en</language>
    <pubDate>Thu, 23 May 2013 02:40:28 GMT</pubDate>
    <lastBuildDate>Thu, 23 May 2013 02:40:28 GMT</lastBuildDate>
    <generator>Rev9</generator>
    <c9:totalResults>8</c9:totalResults>
    <c9:pageCount>1</c9:pageCount>
    <c9:pageSize>25</c9:pageSize>
  <item>
      <title>Let your apps sell themselves!</title>
      <description><![CDATA[<p>Don't miss any opportunity to market your Windows Phone apps!&nbsp; Each one of your apps can serve as an ad for your other apps.&nbsp;&nbsp;&nbsp; Learn how to add a listing of everything you have published in Marketplace to each of your apps.&nbsp; Even better, it will always be up to date!</p><h3>Introduction</h3><p><a href="http://files.channel9.msdn.com/wlwimages/1932b237046e4743a4e79e6800c0220f/image%5B2%5D-2.png"><img title="image" src="http://files.channel9.msdn.com/wlwimages/1932b237046e4743a4e79e6800c0220f/image_thumb-2.png" alt="image" width="244" height="189" align="left" border="0"></a>I've written a number of Windows Phone apps, and each time I've wanted to let people know about my other apps.&nbsp; While I could mention the other apps somewhere, I wouldn't want to update all of my apps each time I release a new one.&nbsp; It finally occurred to me that I could use the listing of apps directly from Marketplace instead.&nbsp; This provides me with an easy-to-parse XML feed (Atom) of my apps with all of the info that I need.&nbsp; Armed with that, it wasn't too much work to create a user control to let me drop in the list of apps anytime I need it.</p><p>This code doesn't require a physical phone, but it isn't very useful if you don't have a Marketplace account!&nbsp; Ideally, you should have several published apps under your account for this to make much sense.&nbsp; Once you have it in place though, all of your apps will always show your complete list without any special updates.</p><p>If you don't have the software installed, go to <a href="http://create.msdn.com/">create.msdn.com</a>, then click <strong>Download the free tools </strong>to download the Windows Phone Developer Tools (or use the direct download link provided above this Introduction section). This code is written for the Windows Phone Developer Tools 7.1 (Mango).&nbsp; It’s is a mostly online install, and it’s pretty big so expect it to take some time. Even if you don’t have any development tools, this will give you Visual Studio Express, Blend, and XNA Game Studio. If you have the full-version tools already, it will add new templates.</p><h3>Project Basics</h3><p>The intention is to create a user control to display a list of apps from a given publisher (preferably yourself!).&nbsp; This user control will be implemented as a ListBox with individual apps showing up visually similar to the way they do in Marketplace.&nbsp; Touching an app in the list should bring the user directly to the appropriate Marketplace page.&nbsp; It should be as easy as adding a project reference, adding the control to a XAML page, and setting the publisher (this could potentially be set by reading the WMAppManifest.xml file).</p><p><a href="http://files.channel9.msdn.com/wlwimages/1932b237046e4743a4e79e6800c0220f/MyAppsList7.png"><img title="MyAppsList" src="http://files.channel9.msdn.com/wlwimages/1932b237046e4743a4e79e6800c0220f/MyAppsList_thumb3.png" alt="MyAppsList" width="465" height="772" border="0"></a></p><h3>Marketplace Data</h3><p>At first glance, getting Marketplace data programmatically isn't an option.&nbsp; Sadly, there's no API for this.&nbsp; Fortunately, there's a solution!&nbsp; If you're using the Zune app to browse publishers and apps, you can watch the network traffic using Fiddler (<a href="http://fiddler2.com/fiddler2/">http://fiddler2.com/fiddler2/</a>).&nbsp; What's nice is that everything you do in Zune results in a simple HTTP request for the data, which is returned as an XML stream.&nbsp; A simple WebRequest object can do a DownloadStringAsync call to get the data, then the SyndicationFeed class can load and parse it.&nbsp; There are extension elements for rating, release date, and price.&nbsp; Even nicer, is that the image thumbnail can be resized server-side based on the URL query string.&nbsp; This makes it super easy to get exactly what we need.</p><p>The server of interest is catalog.zune.net, and the URL format is:</p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: text">/v3.2/en-US/apps?q=PublisherName&amp;clientType=WinMobile 7.1&amp;store=zest</pre></pre><p>The &quot;q&quot; parameter just needs to be set to the publisher name of interest.&nbsp; Remember to URL encode yours if you have spaces in it.</p><p>Note the &quot;clientType&quot; parameter.&nbsp; If you change it to WinMobile 7.0 you will get NoDo (pre-Mango) apps only.&nbsp; You may or may not have anything show up for that, but it's not likely you'll want that list.</p><p>The &quot;store&quot; parameter is set to &quot;zest&quot; but we'll just have to take this one on faith!&nbsp; I'm not aware of any other options here.&nbsp; This could vary by country, but I don't have any data on that.</p><p>This will return all apps for Mango.&nbsp; This returns feed information starting with a header:</p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: xml">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;a:feed xmlns:a=&quot;http://www.w3.org/2005/Atom&quot; xmlns:os=http://a9.com/-/spec/opensearch/1.1/ 
 xmlns=&quot;http://schemas.zune.net/catalog/apps/2008/02&quot;&gt;
  &lt;a:link rel=&quot;self&quot; type=&quot;application/atom&#43;xml&quot; 
    href=&quot;/v3.2/en-US/apps?q=Arian&#43;T.&#43;Kulp&amp;amp;store=zest&amp;amp;clientType=WinMobile&#43;7.1&quot; /&gt;
  &lt;os:startIndex&gt;1&lt;/os:startIndex&gt;
  &lt;os:totalResults&gt;5&lt;/os:totalResults&gt;
  &lt;os:itemsPerPage&gt;5&lt;/os:itemsPerPage&gt;
  &lt;a:updated&gt;2012-01-30T04:21:41.9702941Z&lt;/a:updated&gt;
  &lt;a:title type=&quot;text&quot;&gt;List Of Items&lt;/a:title&gt;
  &lt;a:id&gt;tag:catalog.zune.net,2012-01-30:/apps&lt;/a:id&gt;</pre></pre><p>&nbsp;</p><p>You can pretty much ignore this section.&nbsp; The important stuff comes next!&nbsp; Each Atom entry is one app, along with every bit of metadata that you need to make an interesting view:</p><p>&nbsp;</p><pre class="csharpcode">  <pre class="brush: xml">&lt;a:entry&gt;
    &lt;a:updated&gt;2012-01-30T04:21:41.9858942Z&lt;/a:updated&gt;
    &lt;a:title type=&quot;text&quot;&gt;Metro Lockscreen Creator&lt;/a:title&gt;
    &lt;a:id&gt;urn:uuid:0f5eaaa8-e75e-4a04-a5f9-24db1c176a6b&lt;/a:id&gt;
    &lt;sortTitle&gt;Metro Lockscreen Creator&lt;/sortTitle&gt;
    &lt;releaseDate&gt;2011-07-26T14:30:39.987Z&lt;/releaseDate&gt;
    &lt;version&gt;1.3.0.0&lt;/version&gt;
    &lt;averageUserRating&gt;7.254902&lt;/averageUserRating&gt;
    &lt;userRatingCount&gt;51&lt;/userRatingCount&gt;
    &lt;averageLastInstanceUserRating&gt;5.2&lt;/averageLastInstanceUserRating&gt;
    &lt;lastInstanceUserRatingCount&gt;5&lt;/lastInstanceUserRatingCount&gt;
    &lt;image&gt;
      &lt;id&gt;urn:uuid:cb46389d-6d50-4be0-b4ff-75c968f301ea&lt;/id&gt;
    &lt;/image&gt;
    &lt;categories&gt;
      &lt;category&gt;
        &lt;id&gt;windowsphone.toolsandproductivity&lt;/id&gt;
        &lt;title&gt;tools &#43; productivity&lt;/title&gt;
        &lt;isRoot&gt;True&lt;/isRoot&gt;
      &lt;/category&gt;
    &lt;/categories&gt;
    &lt;tags&gt;
      &lt;tag&gt;apptag.independent&lt;/tag&gt;
    &lt;/tags&gt;
    &lt;offers&gt;
      &lt;offer&gt;
        &lt;offerId&gt;urn:uuid:b8d5cc60-0839-4bcb-b26e-e85ba3e92c8d&lt;/offerId&gt;
        &lt;mediaInstanceId&gt;urn:uuid:2ff871ea-cf8a-488e-b613-286052b90a13&lt;/mediaInstanceId&gt;
        &lt;clientTypes&gt;
          &lt;clientType&gt;WinMobile 7.1&lt;/clientType&gt;
        &lt;/clientTypes&gt;
        &lt;paymentTypes&gt;
          &lt;paymentType&gt;Credit Card&lt;/paymentType&gt;
          &lt;paymentType&gt;Mobile Operator&lt;/paymentType&gt;
        &lt;/paymentTypes&gt;
        &lt;store&gt;Zest&lt;/store&gt;
        &lt;price&gt;0&lt;/price&gt;
        &lt;displayPrice&gt;$0.00&lt;/displayPrice&gt;
        &lt;priceCurrencyCode&gt;USD&lt;/priceCurrencyCode&gt;
        &lt;licenseRight&gt;Purchase&lt;/licenseRight&gt;
      &lt;/offer&gt;
    &lt;/offers&gt;
    &lt;publisher&gt;
      &lt;id&gt;Arian T. Kulp&lt;/id&gt;
      &lt;name&gt;Arian T. Kulp&lt;/name&gt;
    &lt;/publisher&gt;
  &lt;/a:entry&gt;</pre></pre><p>From this block you can get title, release date, rating average and count, category, image ID (easily converted to URL), and price (per market).&nbsp; The <strong>System.ServiceModel.Syndication.SyndicationFeed</strong> class can read from an <strong>XMLReader </strong>object and it handles everything for you.&nbsp; Dealing with the custom Marketplace namespace can lead to some slight complication, but fortunately that's simplified as well.</p><h3>Syndicated Data</h3><p>For standard Atom elements (the ones with the a: namespace here), you can use properties of the <strong>SyndicationItem</strong> class.&nbsp; For some reason, the <strong>SyndicationItem </strong>class isn't actually available in the Windows Phone libraries.&nbsp; I'm not sure why this is the case, but it turns out that you can use the desktop version without a problem.&nbsp; Just add a reference to the &quot;C:\Program Files (x86)\Microsoft SDKs\Silverlight\v3.0\Libraries\Client\System.ServiceModel.Syndication&quot; assembly.&nbsp; You might get a warning when you add it, but it will work fine.&nbsp; If you download the accompanying code, you'll get all the assemblies you need in it.</p><p>The <strong>SyndicationItem </strong>class gets you properties like <em>Title</em> and <em>Id</em>.&nbsp; The other properties are all custom types in the &quot;http://schemas.zune.net/catalog/apps/2008/02&quot; namespace.&nbsp; From these properties, you are interested in <em>shortDescription</em>, <em>userRatingCount</em>, <em>averageUserRating</em>, <em>version</em>, <em>releaseDate</em>, <em>displayPrice</em>, and <em>priceCurrencyCode</em>.&nbsp; Instead of worrying about namespaces, since you know they are custom elements, you can use the <em>ElementExtensions</em> collection on the <strong>SyndicationItem</strong> and query the <em>OuterName</em> property.&nbsp; A simple extension method makes this easy:</p><p><strong>Visual Basic</strong></p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: vb">Private Shared Function GetExtensionElementValue(Of T)(item As SyndicationItem, extensionElementName As String) As T
  Dim f = (From ee In item.ElementExtensions Where ee.OuterName = extensionElementName).FirstOrDefault()

  Return If(f Is Nothing, Nothing, f.GetObject(Of T)())
End Function</pre></pre><p><strong>Visual C#</strong></p><pre class="csharpcode"><pre class="brush: csharp">private static T GetExtensionElementValue&lt;T&gt;(SyndicationItem item, string extensionElementName)
{
    var f = item.ElementExtensions.Where(ee =&gt; ee.OuterName == extensionElementName).FirstOrDefault();
    return f == null ? default(T) : f.GetObject&lt;T&gt;();
}</pre></pre><p>With this method in place, you can create most of a new MarketplaceApp object with the following code:</p><p><strong>Visual Basic</strong></p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: vb">Dim app = New MarketplaceApp() With { _
    .Id = id, _
    .AppLink = &quot;http://windowsphone.com/s?appid=&quot; &amp; Convert.ToString(id), _
    .Title = item.Title.Text, _
    .ShortDescription = GetExtensionElementValue(Of String)(item, &quot;shortDescription&quot;), _
    .UserRatingCount = GetExtensionElementValue(Of Integer)(item, &quot;userRatingCount&quot;), _
    .Version = GetExtensionElementValue(Of String)(item, &quot;version&quot;), _
    .AverageUserRating = GetExtensionElementValue(Of Double)(item, &quot;averageUserRating&quot;) / 2.0, _
    .ReleaseDate = GetExtensionElementValue(Of String)(item, &quot;releaseDate&quot;), _
    .PrimaryImageUrl = Root &amp; &quot;/v3.2/en-US/apps/&quot; &amp; Convert.ToString(id) &amp; &quot;/primaryImage?width=95&amp;height=95&amp;resize=true&quot;, _
    .DisplayPrice = &quot;Unknown&quot; _
}</pre></pre><p><strong>Visual C#</strong></p><pre class="csharpcode"><pre class="brush: csharp">var app = new MarketplaceApp
{
    Id = id,
    AppLink = &quot;http://windowsphone.com/s?appid=&quot; &#43; id,
    Title = item.Title.Text,
    ShortDescription = GetExtensionElementValue&lt;string&gt;(item, &quot;shortDescription&quot;),
    UserRatingCount = GetExtensionElementValue&lt;int&gt;(item, &quot;userRatingCount&quot;),
    Version = GetExtensionElementValue&lt;string&gt;(item, &quot;version&quot;),
    AverageUserRating = GetExtensionElementValue&lt;double&gt;(item, &quot;averageUserRating&quot;) / 2.0,
    ReleaseDate = GetExtensionElementValue&lt;string&gt;(item, &quot;releaseDate&quot;),
    PrimaryImageUrl = Root &#43; &quot;/v3.2/en-US/apps/&quot; &#43; id &#43; &quot;/primaryImage?width=95&amp;height=95&amp;resize=true&quot;
};</pre></pre><p>Where it gets a little bit tricky is the &quot;offers&quot; block.&nbsp; This is an XML block within the overall <em>Item</em> block.&nbsp; This requires that you shift over to an <strong>XmlReader </strong>method of parsing.&nbsp; This works by reading the XML sequentially, stopping at elements of interest.&nbsp; You start by finding the &quot;offers&quot; element, but instead of using the <em>GetObject</em> method, you use <em>GetReader</em>.&nbsp; From there, you use a <em>while</em> loop to visit every node, and grab the value if it's of <em>XmlNodeType.Element</em> and either <em>displayPrice</em> or <em>priceCurrencyCode</em>.</p><p><strong>Visual Basic</strong></p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: vb">Dim offers = (From ee In item.ElementExtensions Where ee.OuterName = &quot;offers&quot;).FirstOrDefault().GetReader()

' TODO: Restrict to current country's offer
If offers.ReadToFollowing(&quot;offer&quot;) Then
    While offers.Read()
        If offers.NodeType = XmlNodeType.Element Then
            If offers.Name = &quot;displayPrice&quot; Then
                app.DisplayPrice = offers.ReadElementContentAsString()
            ElseIf offers.Name = &quot;priceCurrencyCode&quot; Then
                app.PriceCurrencyCode = offers.ReadElementContentAsString()
            End If
        End If
    End While
End If</pre></pre><p><strong>Visual C#</strong></p><pre class="csharpcode"><pre class="brush: csharp">var offers = item.ElementExtensions.
    Where(ee =&gt; ee.OuterName == &quot;offers&quot;).FirstOrDefault().GetReader();

// TODO: Restrict to current country's offer
if (offers.ReadToFollowing(&quot;offer&quot;))
{
    while(offers.Read())
    {
        if (offers.NodeType == XmlNodeType.Element)
        {
            if (offers.Name == &quot;displayPrice&quot;)
                app.DisplayPrice = offers.ReadElementContentAsString();
            else if (offers.Name == &quot;priceCurrencyCode&quot;)
                app.PriceCurrencyCode = offers.ReadElementContentAsString();
        }
    }
}</pre></pre><p>Notice the &quot;TODO&quot; block.&nbsp; If you are offering your app for sale at different prices in different markets, this will only grab the first offer.&nbsp; Ideally, this should grab the offer for the user's location, but that's another topic!</p><h3>Creating the Control</h3><p>Creating a user control makes it easy to add your list of apps anywhere.&nbsp; I like to add it to a PivotItem in my About page.&nbsp; There are really three things to do:</p><p>&nbsp;</p><ol><li>Download the XML </li><li>Parse the XML into model objects </li><li>Bind the collection of items to a list </li></ol><p>Of course, before you can show anything, you'll want to create a template to serve as the ItemTemplate in the control.&nbsp; This will use databinding to point back at the properties of the marketplace entries to display the name, price, image, etc.&nbsp; This can be created inline within the ListBox markup, or in the UserControl.Resources block (as it is in this case).&nbsp; The root element is a Grid.&nbsp; The Image shows the app's icon, and the StackPanel displays the title, price, and rating information.</p><pre class="csharpcode"><pre class="brush: xml">&lt;DataTemplate x:Key=&quot;AppTemplate&quot;&gt;
    &lt;Grid x:Name=&quot;LayoutRoot&quot; Margin=&quot;0,0,0,4&quot; Width=&quot;450&quot; Background=&quot;Transparent&quot;&gt;
        &lt;Grid.ColumnDefinitions&gt;
            &lt;ColumnDefinition Width=&quot;95&quot;/&gt;
            &lt;ColumnDefinition Width=&quot;1*&quot; /&gt;
        &lt;/Grid.ColumnDefinitions&gt;

        &lt;Image Source=&quot;{Binding PrimaryImageUrl}&quot; Margin=&quot;0,0,20,10&quot; /&gt;
        &lt;StackPanel Grid.Column=&quot;1&quot;&gt;
            &lt;TextBlock Text=&quot;{Binding Title}&quot; /&gt;
            &lt;Controls1:RatingControl Max=&quot;5&quot; Total=&quot;{Binding UserRatingCount}&quot;
Score=&quot;{Binding AverageUserRating}&quot; /&gt;
            &lt;TextBlock Text=&quot;{Binding DisplayPrice}&quot; /&gt;
        &lt;/StackPanel&gt;
    &lt;/Grid&gt;
&lt;/DataTemplate&gt;</pre></pre><p>With the template complete, you just need a ListBox with the ItemTemplate set to the above template.&nbsp;</p><pre class="csharpcode"><pre class="brush: xml">&lt;Grid&gt;
    &lt;ListBox x:Name=&quot;listBox&quot; ItemsSource=&quot;{Binding Apps}&quot;
ItemTemplate=&quot;{StaticResource AppTemplate}&quot;SelectionChanged=&quot;ListBox_SelectionChanged&quot; /&gt;
    &lt;StackPanel x:Name=&quot;LoadingView&quot; HorizontalAlignment=&quot;Center&quot;
VerticalAlignment=&quot;Center&quot;Visibility=&quot;Collapsed&quot;&gt;
        &lt;TextBlock TextWrapping=&quot;Wrap&quot; Text=&quot;Loading list of apps...&quot;
d:LayoutOverrides=&quot;Height&quot;FontWeight=&quot;Black&quot;/&gt;
        &lt;ProgressBar Margin=&quot;0,0,0,6&quot; Height=&quot;5&quot; IsIndeterminate=&quot;True&quot;/&gt;
    &lt;/StackPanel&gt;
    &lt;StackPanel x:Name=&quot;ErrorView&quot; Orientation=&quot;Vertical&quot; VerticalAlignment=&quot;Center&quot;
HorizontalAlignment=&quot;Center&quot; Visibility=&quot;Collapsed&quot;&gt;
        &lt;TextBlock HorizontalAlignment=&quot;Left&quot; TextWrapping=&quot;Wrap&quot;
Text=&quot;Sorry, there was an error reading the list of apps.&quot; FontStyle=&quot;Italic&quot;/&gt;
    &lt;/StackPanel&gt;
&lt;/Grid&gt;</pre></pre><p>The other elements are used to display a loading message and an error message.&nbsp; Switching between the list, loading, or error message is accomplished using VisualStateManager with the &quot;Normal,&quot; &quot;Loading,&quot; or &quot;Error&quot; states accordingly.</p><p>The only other methods needed in the code-behind are to handle selection and caching.&nbsp; When an item is selected, you create a <strong>MarketplaceDetailTask </strong>object, set the <em>ContentIdentifier</em> to the app's unique ID, and call Show().&nbsp; Set the <em>SelectedIndex</em> property back to -1 to prevent a problem where a user can't press the same item twice in the row.</p><p>The caching is important so the app doesn't cause data access on every single visit to the control.&nbsp; It's currently set to reload once per day, but this could be changed (or better yet, made configurable).&nbsp; Even if it's more than a day, if there's an error downloading the data it will always fallback to cache.</p><p><strong>Visual Basic</strong></p><p>&nbsp;</p><pre class="csharpcode"><pre class="brush: vb">Dim items As IEnumerable(Of MarketplaceApp) = Nothing

If IsolatedStorageSettings.ApplicationSettings.Contains(&quot;PublisherAppsControls.Items&quot;) Then
  items = DirectCast(IsolatedStorageSettings.ApplicationSettings( _
    &quot;PublisherAppsControls.Items&quot;), IEnumerable(Of MarketplaceApp)) 
  ' Use the cache if within a day...
  Dim dt = CType(IsolatedStorageSettings.ApplicationSettings( _ 
    &quot;PublisherAppsControls.Items.DateTime&quot;), DateTime)

  If DateTime.Now.Subtract(dt).TotalDays &lt; 1 Then
    ctrl.Apps.Clear()
    For Each i In items
      ctrl.Apps.Add(i)
    Next
    Return
  End If
End If</pre></pre><p><strong>Visual C#</strong></p><pre class="csharpcode"><pre class="brush: csharp">IEnumerable&lt;MarketplaceApp&gt; items = null;

if (IsolatedStorageSettings.ApplicationSettings.Contains(&quot;PublisherAppsControls.Items&quot;))
{
    items = (IEnumerable&lt;MarketplaceApp&gt;)
             IsolatedStorageSettings.ApplicationSettings[&quot;PublisherAppsControls.Items&quot;];
    // Use the cache if within a day...
    var dt = (DateTime)IsolatedStorageSettings.
               ApplicationSettings[&quot;PublisherAppsControls.Items.DateTime&quot;];
    if (DateTime.Now.Subtract(dt).TotalDays &lt; 1)
    {
        ctrl.Apps.Clear();
        foreach (var i in items) ctrl.Apps.Add(i);
        return;
    }
}</pre></pre><h3>Next Steps</h3><p>I haven't tested this app against publishers with large numbers of apps.&nbsp; I'm not sure if they would all come back in the response or if there would be more requests to make.&nbsp; It would also be good to filter out the currently running app.&nbsp; This could be obtained from the WMAppManifest.xml file.&nbsp; As mentioned in the article, it would also be good to restrict the offer to the current country, but I really don't know how to do that without using the location API, which seems too heavy-handed.</p><p>It would be nice to create a general-purpose library for Zune Marketplace data.&nbsp; There are some good starts out there from the likes of Brandon Watson and Jesse Liberty, a CodePlex library, and even another Coding4Fun project, but much of that is based on general catalog data, or specialized for music entries.&nbsp; Even better would be if Microsoft can put out their own API!&nbsp; That would ensure a better experience if/when formats change over time.</p><h3>Conclusion</h3><p>XML has made the world of data so much easier to consume!&nbsp; As soon as I saw structured data as the foundation for Zune I knew this would be a pretty easy project.&nbsp; Being able to advertise all of your apps in each of your apps provides a great way to promote with a minimum of effort.</p><h3>About the Author</h3><p><a href="http://www.ariankulp.com/">Arian Kulp</a> is a software developer living in Western Oregon. He creates samples, screencasts, demos, labs, and articles, speaks at programming events, and enjoys hiking and other outdoor adventures with his family.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:f3231d90e6ca4435ade49ff2014347ff">]]></description>
      <comments>http://channel9.msdn.com/coding4fun/articles/Let-your-apps-sell-themselves</comments>
      <itunes:summary>Don&#39;t miss any opportunity to market your Windows Phone apps!&amp;nbsp; Each one of your apps can serve as an ad for your other apps.&amp;nbsp;&amp;nbsp;&amp;nbsp; Learn how to add a listing of everything you have published in Marketplace to each of your apps.&amp;nbsp; Even better, it will always be up to date! IntroductionI&#39;ve written a number of Windows Phone apps, and each time I&#39;ve wanted to let people know about my other apps.&amp;nbsp; While I could mention the other apps somewhere, I wouldn&#39;t want to update all of my apps each time I release a new one.&amp;nbsp; It finally occurred to me that I could use the listing of apps directly from Marketplace instead.&amp;nbsp; This provides me with an easy-to-parse XML feed (Atom) of my apps with all of the info that I need.&amp;nbsp; Armed with that, it wasn&#39;t too much work to create a user control to let me drop in the list of apps anytime I need it. This code doesn&#39;t require a physical phone, but it isn&#39;t very useful if you don&#39;t have a Marketplace account!&amp;nbsp; Ideally, you should have several published apps under your account for this to make much sense.&amp;nbsp; Once you have it in place though, all of your apps will always show your complete list without any special updates. If you don&#39;t have the software installed, go to create.msdn.com, then click Download the free tools to download the Windows Phone Developer Tools (or use the direct download link provided above this Introduction section). This code is written for the Windows Phone Developer Tools 7.1 (Mango).&amp;nbsp; It’s is a mostly online install, and it’s pretty big so expect it to take some time. Even if you don’t have any development tools, this will give you Visual Studio Express, Blend, and XNA Game Studio. If you have the full-version tools already, it will add new templates. Project BasicsThe intention is to create a user control to display a list of apps from a given publisher (preferably yourself!).&amp;nbsp; This user control will be implemented as a ListBox with individual apps showing </itunes:summary>
      <link>http://channel9.msdn.com/coding4fun/articles/Let-your-apps-sell-themselves</link>
      <pubDate>Mon, 13 Feb 2012 22:05:25 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/coding4fun/articles/Let-your-apps-sell-themselves</guid>
      <media:thumbnail url="http://files.channel9.msdn.com/thumbnail/ed932a8a-a783-4663-9c54-8cf9c7cc5575.png" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://files.channel9.msdn.com/thumbnail/1e09ad22-2ccf-48b8-a6e4-54c7d077dff7.png" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://files.channel9.msdn.com/thumbnail/efb8601c-2d6d-47f1-9f50-6172395cba27.png" height="240" width="320"></media:thumbnail>      
      <dc:creator>atkulp</dc:creator>
      <itunes:author>atkulp</itunes:author>
      <slash:comments>9</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/coding4fun/articles/Let-your-apps-sell-themselves/RSS</wfw:commentRss>
      <category>Phone 7</category>
      <category>User Controls</category>
      <category>Phone</category>
    </item>
  <item>
      <title>Developing Windows Phone 7 Apps for SharePoint 2010</title>
      <description><![CDATA[ <p>Take your SharePoint business applications on the go with Windows Phone. Windows Phone has great integration with SharePoint via the Microsoft Office hub. While the Office hub is interesting and has a lot of capabilities out of the box, as a developer I want to create my own applications that can leverage the full power of the SharePoint 2010 and Phone 7 platform. In this episode, learn how to setup your Windows Phone 7 for SharePoint developer environment.</p><p><strong>Learn More</strong></p><p><strong>SharePoint 2010&nbsp;and Windows Phone 7&nbsp;Training Course</strong></p><p><strong><a title="http://msdn.microsoft.com/SharePointAndWindowsPhone7TrainingCourse" href="http://msdn.microsoft.com/SharePointAndWindowsPhone7TrainingCourse">http://msdn.microsoft.com/SharePointAndWindowsPhone7TrainingCourse</a></strong></p><p><strong>Teched 2010: Building Your First Windows Phone Application for Microsoft SharePoint 2010</strong></p><p><a href="http://channel9.msdn.com/Events/TechEd/NorthAmerica/2011/OSP209">http://channel9.msdn.com/Events/TechEd/NorthAmerica/2011/OSP209</a></p><p><strong>Blog Post: Developing Windows Phone 7 Applications for SharePoint 2010</strong></p><p><a href="http://blogs.msdn.com/b/pstubbs/archive/2010/10/04/developing-windows-phone-7-applications-for-sharepoint-2010.aspx">http://blogs.msdn.com/b/pstubbs/archive/2010/10/04/developing-windows-phone-7-applications-for-sharepoint-2010.aspx</a></p><p><a href="http://archive.msdn.microsoft.com/SPPhone">http://archive.msdn.microsoft.com/SPPhone</a></p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:b4a8de6dbff6418a8f6d9f0501674100">]]></description>
      <comments>http://channel9.msdn.com/Shows/SharePointSideshow/Developing-Windows-Phone-7-Apps-for-SharePoint-2010</comments>
      <itunes:summary> Take your SharePoint business applications on the go with Windows Phone. Windows Phone has great integration with SharePoint via the Microsoft Office hub. While the Office hub is interesting and has a lot of capabilities out of the box, as a developer I want to create my own applications that can leverage the full power of the SharePoint 2010 and Phone 7 platform. In this episode, learn how to setup your Windows Phone 7 for SharePoint developer environment. Learn More SharePoint 2010&amp;nbsp;and Windows Phone 7&amp;nbsp;Training Course http://msdn.microsoft.com/SharePointAndWindowsPhone7TrainingCourse Teched 2010: Building Your First Windows Phone Application for Microsoft SharePoint 2010 http://channel9.msdn.com/Events/TechEd/NorthAmerica/2011/OSP209 Blog Post: Developing Windows Phone 7 Applications for SharePoint 2010 http://blogs.msdn.com/b/pstubbs/archive/2010/10/04/developing-windows-phone-7-applications-for-sharepoint-2010.aspx http://archive.msdn.microsoft.com/SPPhone </itunes:summary>
      <itunes:duration>1098</itunes:duration>
      <link>http://channel9.msdn.com/Shows/SharePointSideshow/Developing-Windows-Phone-7-Apps-for-SharePoint-2010</link>
      <pubDate>Wed, 13 Jul 2011 15:50:18 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Shows/SharePointSideshow/Developing-Windows-Phone-7-Apps-for-SharePoint-2010</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_2MB_ch9.wmv" expression="full" duration="1098" fileSize="160554605" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_ch9.mp3" expression="full" duration="1098" fileSize="8785669" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_ch9.wma" expression="full" duration="1098" fileSize="8884803" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_ch9.wmv" expression="full" duration="1098" fileSize="102540015" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_high_ch9.mp4" expression="full" duration="1098" fileSize="338043049" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_low_ch9.mp4" expression="full" duration="1098" fileSize="40635658" type="video/mp4" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps.ism/manifest" expression="full" duration="1098" fileSize="8554" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/4100/b4a8de6d-bff6-418a-8f6d-9f0501674100/SPSideshowPhone7Apps_ch9.wmv" length="102540015" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Donovan Follette, Paul Stubbs</dc:creator>
      <itunes:author>Donovan Follette, Paul Stubbs</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Shows/SharePointSideshow/Developing-Windows-Phone-7-Apps-for-SharePoint-2010/RSS</wfw:commentRss>
      <category>Phone 7</category>
      <category>SharePoint</category>
      <category>Windows Phone 7</category>
      <category>Phone</category>
    </item>
  <item>
      <title>What&#39;s new in &quot;Mango&quot;, the Next Version of Windows Phone</title>
      <description><![CDATA[ <p>What's new in &quot;Mango&quot;, the Next Version of Windows Phone<br><strong>Jaime Rodriguez</strong> , Microsoft&nbsp;</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:bf347f612b4c4c3cb5559ef400ceb81e">]]></description>
      <comments>http://channel9.msdn.com/posts/Whats-new-in-Mango-the-Next-Version-of-Windows-Phone</comments>
      <itunes:summary> What&#39;s new in &amp;quot;Mango&amp;quot;, the Next Version of Windows PhoneJaime Rodriguez , Microsoft&amp;nbsp; </itunes:summary>
      <itunes:duration>3761</itunes:duration>
      <link>http://channel9.msdn.com/posts/Whats-new-in-Mango-the-Next-Version-of-Windows-Phone</link>
      <pubDate>Tue, 31 May 2011 17:59:26 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/Whats-new-in-Mango-the-Next-Version-of-Windows-Phone</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_2MB_ch9.wmv" expression="full" duration="3761" fileSize="466403727" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_ch9.mp3" expression="full" duration="3761" fileSize="30095910" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_ch9.wma" expression="full" duration="3761" fileSize="30429491" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_ch9.wmv" expression="full" duration="3761" fileSize="281579999" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_high_ch9.mp4" expression="full" duration="3761" fileSize="1023089186" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_low_ch9.mp4" expression="full" duration="3761" fileSize="100294556" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_Zune_ch9.wmv" expression="full" duration="3761" fileSize="170108054" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango.ism/manifest" expression="full" duration="3761" fileSize="8474" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/b81e/bf347f61-2b4c-4c3c-b555-9ef400ceb81e/whatsnewinmango_ch9.wmv" length="281579999" type="video/x-ms-wmv"></enclosure>
      <dc:creator>TanjaSade</dc:creator>
      <itunes:author>TanjaSade</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/Whats-new-in-Mango-the-Next-Version-of-Windows-Phone/rss</wfw:commentRss>
      <category>Phone 7</category>
      <category>Windows Phone 7</category>
      <category>Phone</category>
    </item>
  <item>
      <title>Keynote and Overview of Windows Phone</title>
      <description><![CDATA[ <p><strong>Windows Phone Mobile Day 26.5.</strong></p><p><strong>Keynote and Overview of Windows PhoneBrandon Watson</strong>, Microsoft</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:f75de18363a34012a9bd9ef400648381">]]></description>
      <comments>http://channel9.msdn.com/posts/Keynote-and-Overview-of-Windows-Phone</comments>
      <itunes:summary> Windows Phone Mobile Day 26.5. Keynote and Overview of Windows PhoneBrandon Watson, Microsoft </itunes:summary>
      <itunes:duration>4638</itunes:duration>
      <link>http://channel9.msdn.com/posts/Keynote-and-Overview-of-Windows-Phone</link>
      <pubDate>Tue, 31 May 2011 12:25:33 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/Keynote-and-Overview-of-Windows-Phone</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_2MB_ch9.wmv" expression="full" duration="4638" fileSize="582560983" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_ch9.mp3" expression="full" duration="4638" fileSize="37105470" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_ch9.wma" expression="full" duration="4638" fileSize="37515927" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_ch9.wmv" expression="full" duration="4638" fileSize="432865255" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_high_ch9.mp4" expression="full" duration="4638" fileSize="1327142439" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_low_ch9.mp4" expression="full" duration="4638" fileSize="148343365" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_Zune_ch9.wmv" expression="full" duration="4638" fileSize="291249310" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote.ism/manifest" expression="full" duration="4638" fileSize="8554" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/8381/f75de183-63a3-4012-a9bd-9ef400648381/Windowsphone7keynote_ch9.wmv" length="432865255" type="video/x-ms-wmv"></enclosure>
      <dc:creator>TanjaSade</dc:creator>
      <itunes:author>TanjaSade</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/Keynote-and-Overview-of-Windows-Phone/rss</wfw:commentRss>
      <category>Phone 7</category>
      <category>Windows Phone 7</category>
      <category>WP7</category>
      <category>Marketplace</category>
      <category>Phone</category>
    </item>
  <item>
      <title>Align IT Tour 2011: Development Managers: Session 1 of 3: Managing Complexity with Process, People and Tools</title>
      <description><![CDATA[ <p class="sessionText"><strong>Enabling business innovation through collaborative software development</strong><br><br>Do you oversee teams of developers, architects or testers? Interested in developing for the cloud? Then join me, Jonathan Rozenblit, and my fellow Developer Evangelists, Christian Beauclair and John Bristowe, as&nbsp;we host this series of Development-oriented sessions. We’ll use real-world examples to demonstrate how you can minimize the time, cost, and risk of developing custom software applications.</p><div id="srDesc_4"><p>Development teams are constantly challenged to deliver highly secure, quality software in an environment of growing business demand and quick time-to-market. No matter what solution is being developed, from client software to applications that take advantage of the Cloud, development managers are looking toward holistic software development approaches and best practices to help create an efficient and effective development process. <br><br>This session concentrates on these processes and explores how the Microsoft platform will help you and your team in conquering these development challenges.</p></div> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:a5735ca667b24fa090899ec2002089e7">]]></description>
      <comments>http://channel9.msdn.com/posts/AlignITTour2011DDM1</comments>
      <itunes:summary> Enabling business innovation through collaborative software developmentDo you oversee teams of developers, architects or testers? Interested in developing for the cloud? Then join me, Jonathan Rozenblit, and my fellow Developer Evangelists, Christian Beauclair and John Bristowe, as&amp;nbsp;we host this series of Development-oriented sessions. We’ll use real-world examples to demonstrate how you can minimize the time, cost, and risk of developing custom software applications. Development teams are constantly challenged to deliver highly secure, quality software in an environment of growing business demand and quick time-to-market. No matter what solution is being developed, from client software to applications that take advantage of the Cloud, development managers are looking toward holistic software development approaches and best practices to help create an efficient and effective development process. This session concentrates on these processes and explores how the Microsoft platform will help you and your team in conquering these development challenges. </itunes:summary>
      <itunes:duration>3086</itunes:duration>
      <link>http://channel9.msdn.com/posts/AlignITTour2011DDM1</link>
      <pubDate>Wed, 13 Apr 2011 02:43:17 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/AlignITTour2011DDM1</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_2MB_ch9.wmv" expression="full" duration="3086" fileSize="495084672" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_ch9.mp3" expression="full" duration="3086" fileSize="24692059" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_ch9.wma" expression="full" duration="3086" fileSize="24968219" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_ch9.wmv" expression="full" duration="3086" fileSize="515079949" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_high_ch9.mp4" expression="full" duration="3086" fileSize="1046354671" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_low_ch9.mp4" expression="full" duration="3086" fileSize="200209988" type="video/mp4" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1.ism/manifest" expression="full" duration="3086" fileSize="9676" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/89e7/a5735ca6-67b2-4fa0-9089-9ec2002089e7/AlignITTour2011DDM1_ch9.wmv" length="515079949" type="video/x-ms-wmv"></enclosure>
      <dc:creator>John Bristowe, Jonathan Rozenblit</dc:creator>
      <itunes:author>John Bristowe, Jonathan Rozenblit</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/AlignITTour2011DDM1/rss</wfw:commentRss>
      <category>ALM</category>
      <category>ALM tools</category>
      <category>Cloud</category>
      <category>HTML 5</category>
      <category>HTML5</category>
      <category>IE9</category>
      <category>Phone 7</category>
      <category>Phone</category>
    </item>
  <item>
      <title>Windows Phone 7 Accelerometer QuickApp (Using Silverlight for Windows Phone 7)</title>
      <description><![CDATA[ <p>John Mulhausen walks you through building a very quick application that will take you from zero to visualized accelerometer output (in the form of a line graph) in just 13 minutes.</p><p><a href="http://code.msdn.microsoft.com/silverlightforphone/Release/ProjectReleases.aspx?ReleaseId=5206">Click here</a> to download the source code for this app at the Silverlight for Windows Phone Code Gallery.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:8ada5d2df2b943abb68d9e3f01641538">]]></description>
      <comments>http://channel9.msdn.com/posts/Windows-Phone-7-Accelerometer-QuickApp-Using-Silverlight-for-Windows-Phone-7</comments>
      <itunes:summary> John Mulhausen walks you through building a very quick application that will take you from zero to visualized accelerometer output (in the form of a line graph) in just 13 minutes. Click here to download the source code for this app at the Silverlight for Windows Phone Code Gallery. </itunes:summary>
      <itunes:duration>806</itunes:duration>
      <link>http://channel9.msdn.com/posts/Windows-Phone-7-Accelerometer-QuickApp-Using-Silverlight-for-Windows-Phone-7</link>
      <pubDate>Fri, 04 Mar 2011 20:15:28 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/Windows-Phone-7-Accelerometer-QuickApp-Using-Silverlight-for-Windows-Phone-7</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_2MB_ch9.wmv" expression="full" duration="806" fileSize="116602863" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_ch9.mp3" expression="full" duration="806" fileSize="6454097" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_ch9.wma" expression="full" duration="806" fileSize="6535675" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_ch9.wmv" expression="full" duration="806" fileSize="61354269" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_high_ch9.mp4" expression="full" duration="806" fileSize="236407584" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_low_ch9.mp4" expression="full" duration="806" fileSize="32989059" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_Zune_ch9.wmv" expression="full" duration="806" fileSize="46250324" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp.ism/manifest" expression="full" duration="806" fileSize="6126" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/1538/8ADA5D2D-F2B9-43AB-B68D-9E3F01641538/accelerometerquickapp_ch9.wmv" length="61354269" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JoMul</dc:creator>
      <itunes:author>JoMul</itunes:author>
      <slash:comments>1</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/Windows-Phone-7-Accelerometer-QuickApp-Using-Silverlight-for-Windows-Phone-7/rss</wfw:commentRss>
      <category>accelerometer</category>
      <category>Phone 7</category>
      <category>Silverlight</category>
      <category>Windows Phone 7</category>
      <category>Phone</category>
      <category>Quick Apps</category>
    </item>
  <item>
      <title>Windows Phone 7 Location Services (GPS/Maps) QuickApp (Using Silverlight for Windows Phone 7)</title>
      <description><![CDATA[ <p>John Mulhausen walks you through building a very quick application that will take you from zero to seeing yourself travelling on a map in real-time in just 15 minutes.</p><p>The Location Service for Windows Phone 7 uses a combination of GPS, cell-tower data, and even Wi-Fi data to determine the phone's longitude, latitude, altitude, course, speed, and more.</p><p><a href="http://code.msdn.microsoft.com/silverlightforphone/Release/ProjectReleases.aspx?ReleaseId=5313">Click here</a> to download the source code for this app at the Silverlight for Windows Phone Code Gallery.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:456831488ec94a5899979e5c014d355e">]]></description>
      <comments>http://channel9.msdn.com/posts/Windows-Phone-7-Location-Services-GPSMaps-QuickApp-Using-Silverlight-for-Windows-Phone-7</comments>
      <itunes:summary> John Mulhausen walks you through building a very quick application that will take you from zero to seeing yourself travelling on a map in real-time in just 15 minutes. The Location Service for Windows Phone 7 uses a combination of GPS, cell-tower data, and even Wi-Fi data to determine the phone&#39;s longitude, latitude, altitude, course, speed, and more. Click here to download the source code for this app at the Silverlight for Windows Phone Code Gallery. </itunes:summary>
      <itunes:duration>941</itunes:duration>
      <link>http://channel9.msdn.com/posts/Windows-Phone-7-Location-Services-GPSMaps-QuickApp-Using-Silverlight-for-Windows-Phone-7</link>
      <pubDate>Fri, 04 Mar 2011 20:15:11 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/posts/Windows-Phone-7-Location-Services-GPSMaps-QuickApp-Using-Silverlight-for-Windows-Phone-7</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_2MB_ch9.wmv" expression="full" duration="941" fileSize="104891673" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_ch9.mp3" expression="full" duration="941" fileSize="7533716" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_ch9.wma" expression="full" duration="941" fileSize="7629131" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_ch9.wmv" expression="full" duration="941" fileSize="50507079" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_high_ch9.mp4" expression="full" duration="941" fileSize="252920039" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_low_ch9.mp4" expression="full" duration="941" fileSize="25967205" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_Zune_ch9.wmv" expression="full" duration="941" fileSize="40507134" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://smooth.ch9.ms/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp.ism/manifest" expression="full" duration="941" fileSize="6186" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/355E/45683148-8EC9-4A58-9997-9E5C014D355E/LocationServicesGPSQuickapp_ch9.wmv" length="50507079" type="video/x-ms-wmv"></enclosure>
      <dc:creator>JoMul</dc:creator>
      <itunes:author>JoMul</itunes:author>
      <slash:comments>0</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/posts/Windows-Phone-7-Location-Services-GPSMaps-QuickApp-Using-Silverlight-for-Windows-Phone-7/rss</wfw:commentRss>
      <category>Bing Maps</category>
      <category>GPS</category>
      <category>Location</category>
      <category>Location Based Service</category>
      <category>Maps</category>
      <category>Phone 7</category>
      <category>Silverlight</category>
      <category>Windows Phone</category>
      <category>Windows Phone 7</category>
      <category>Phone</category>
      <category>Quick Apps</category>
    </item>
  <item>
      <title>Teenager Makes Money Writing Windows Phone 7 Apps with AdCenter</title>
      <description><![CDATA[ <p>Lead developer Johnny Simmons of Simzz Dev describes how he learned to write Windows Phone 7 applications. He learned by watching videos and finding code samples.</p><p>Johnny, 13,&nbsp;talks with ISV Architect Evangelist Bruce Kyle about how he got started, and how he makes money through <a href="http://advertising.microsoft.com/mobile-apps">AdCenter</a>. Turns out his most successful apps are the free ones that include advertising. &nbsp;</p><p>His advice for developers, &quot;Don't give up.&quot;</p><p>The best way to find all the SimzzDev apps is to go to Zune or a phone and type in SimzzDev.</p><ul><li>DrawPad </li><li>DrawPad Pro </li><li>NightClock </li><li>Analog Night Clock </li><li>Random Numbers and Dice </li><li>7 Tab Browser Free </li><li>7 Tab Browser Pro </li><li>Chasing Howie </li><li>NBA Schedule </li><li>System Info </li></ul><h3>Getting Started with Windows Phone 7</h3><p>Tools are free. Get started on <a href="http://create.msdn.com">Windows Phone 7 or XBox at App Hub</a>.</p><p>See the <a href="http://channel9.msdn.com/Learn/Courses/WP7TrainingKit">free developer training course for Windows Phone 7 on Channel 9</a>.</p><p><a href="http://www.msdev.com/Directory/SeriesDescription.aspx?CourseId=158">Windows Phone 7 in 7 tutorials</a> on <a href="http://www.msdev.com/">MSDEV</a>. Each short, to-the-point video in this series highlights a feature of Windows Phone 7 in less than 7 minutes. This is a series for developers who want to pick up the basics quickly with brief explanations and hands-on examples. Demonstrations and code samples are based on the beta release of the Windows Phone 7 Developer.</p><h3>Free Assistance</h3><p>Join <a href="http://microsoftplatformready.com">Microsoft Platform Ready</a> for free assistance in developing and marketing your Windows Phone 7 applications.</p><h3>How to Get Started with AdCenter</h3><ol><li>Download the Ad Control SDK. Download the Ad SDK to build your app and run ads in test mode that requires no on-boarding to try out the Microsoft Advertising SDK for Windows Phone 7. </li><li>Register your mobile apps on pubCenter. Sign up and register your Windows Phone apps using Microsoft Advertising's solution for Windows Phone 7 publishers and app developers. </li><li>Implement and Submit. Set the Application Id and Ad Unit Id properties in the Ad Control and submit your ad-enabled app to the Windows Phone marketplace. </li></ol><p>Learn more at <a href="http://advertising.microsoft.com/mobile-apps">Monetize your Windows Phone 7 Apps</a>.</p><h3>Other ISV Videos</h3><p>For videos on developing for Windows Phone 7, see:</p><ul><li><a href="http://channel9.msdn.com/posts/Talking-with-Karmakcom-about-business-applications-on-Windows-Phone-7">Talking&nbsp; with Karmak.com about business applications on Windows Phone 7</a></li><li><a href="http://channel9.msdn.com/posts/The-BinaryDads-talk-about-building-applications-for-Windows-Phone-7">BinaryDads talk about building applications for Windows Phone 7</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Game-Design-and-Development-in-Silverlight-for-Windows-Phone-7">Game Design and Development in Silverlight for Windows Phone 7</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Windows-Phone-7-Game-Begins-Life-in-WPF-Now-a-Silverlight-Ad-Supported-App">Windows Phone 7 Game Begins Life in WPF -- Now a Silverlight,&nbsp; Ad Supported App</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/XNA-Game-Development-on-Windows-Phone-7-in-One-Sitting">XNA Game Development on Windows Phone 7 in One Sitting</a></li></ul><p>For videos on Windows Azure Platform, see:</p><ul><li><a href="https://channel9.msdn.com/Blogs/bruceky/Azure-Email-Enables-Lists-Low-Cost-Storage-for-SharePoint">Azure Email-Enables Lists, Low-Cost Storage for SharePoint</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Crowd-Sourcing-Public-Sector-App-for-Windows-Phone-Azure">Crowd-Sourcing Public Sector App for Windows Phone, Azure</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Food-Buster-Game-Achieves-Scalability-with-Windows-Azure">Food Buster Game Achieves Scalability with Windows Azure</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/BI-Solutions-Join-On-Premises-To-Windows-Azure-Using-Star-Analytics-Command-Center">BI Solutions Join On-Premises To Windows Azure Using Star Analytics Command Center</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/StorSimple-Integrates-On-Premises-Cloud-Storage-with-Windows-Azure">StorSimple Integrates On-Premises, Cloud Storage with Windows Azure</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/NewsGator-Devs-Move-Feeds-for-Three-Million-Posts-Per-Day-to-Windows-Azure">NewsGator Moves 3 Million Blog Posts Per Day on Azure</a></li></ul><p>For other videos about independent software vendors (ISVs):</p><ul><li><a href="http://channel9.msdn.com/Blogs/bruceky/Quark-Extends-SharePoint-for-Dynamic-Publishing">Quark Extends SharePoint for Dynamic Publishing</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/ProModel-Adds-Simulation-Visualization-to-Microsoft-Project">ProModel Adds Simulation, Visualization to Microsoft Project</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Slingbox-Maker-Sling-Media-Describes-Cross-Platform-Commitment-to-Silverlight">Slingbox Maker Sling Media Describes Cross-Platform Commitment to Silverlight</a></li><li><a href="http://channel9.msdn.com/Blogs/bruceky/Thumb-Driven-Workflow-on-Windows-7-Slates-from-Blue-Dot-Solutions">Thumb-Driven Workflow on Windows 7 Slates from Blue Dot Solutions</a></li></ul><h3>Up to Date News for ISVs and Software Developers</h3><p>See <a href="http://blogs.msdn.com/usivde">US ISV Community blog</a>.</p> <img src="http://m.webtrends.com/dcs1wotjh10000w0irc493s0e_6x1g/njs.gif?dcssip=channel9.msdn.com&dcsuri=http://channel9.msdn.com/Tags/phone-7/RSS&WT.dl=0&WT.entryid=Entry:RSSView:27760164b22f421789969e970031c308">]]></description>
      <comments>http://channel9.msdn.com/Blogs/bruceky/Teenager-Makes-Money-Writing-Windows-Phone-7-Apps-with-AdCenter</comments>
      <itunes:summary> Lead developer Johnny Simmons of Simzz Dev describes how he learned to write Windows Phone 7 applications. He learned by watching videos and finding code samples. Johnny, 13,&amp;nbsp;talks with ISV Architect Evangelist Bruce Kyle about how he got started, and how he makes money through AdCenter. Turns out his most successful apps are the free ones that include advertising. &amp;nbsp; His advice for developers, &amp;quot;Don&#39;t give up.&amp;quot; The best way to find all the SimzzDev apps is to go to Zune or a phone and type in SimzzDev. DrawPad DrawPad Pro NightClock Analog Night Clock Random Numbers and Dice 7 Tab Browser Free 7 Tab Browser Pro Chasing Howie NBA Schedule System Info Getting Started with Windows Phone 7Tools are free. Get started on Windows Phone 7 or XBox at App Hub. See the free developer training course for Windows Phone 7 on Channel 9. Windows Phone 7 in 7 tutorials on MSDEV. Each short, to-the-point video in this series highlights a feature of Windows Phone 7 in less than 7 minutes. This is a series for developers who want to pick up the basics quickly with brief explanations and hands-on examples. Demonstrations and code samples are based on the beta release of the Windows Phone 7 Developer. Free AssistanceJoin Microsoft Platform Ready for free assistance in developing and marketing your Windows Phone 7 applications. How to Get Started with AdCenterDownload the Ad Control SDK. Download the Ad SDK to build your app and run ads in test mode that requires no on-boarding to try out the Microsoft Advertising SDK for Windows Phone 7. Register your mobile apps on pubCenter. Sign up and register your Windows Phone apps using Microsoft Advertising&#39;s solution for Windows Phone 7 publishers and app developers. Implement and Submit. Set the Application Id and Ad Unit Id properties in the Ad Control and submit your ad-enabled app to the Windows Phone marketplace. Learn more at Monetize your Windows Phone 7 Apps. Other ISV VideosFor videos on developing for Windows Phone </itunes:summary>
      <itunes:duration>308</itunes:duration>
      <link>http://channel9.msdn.com/Blogs/bruceky/Teenager-Makes-Money-Writing-Windows-Phone-7-Apps-with-AdCenter</link>
      <pubDate>Thu, 03 Mar 2011 16:06:30 GMT</pubDate>
      <guid isPermaLink="false">http://channel9.msdn.com/Blogs/bruceky/Teenager-Makes-Money-Writing-Windows-Phone-7-Apps-with-AdCenter</guid>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_100_ch9.jpg" height="75" width="100"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_220_ch9.jpg" height="165" width="220"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_512_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:thumbnail url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_custom_ch9.jpg" height="384" width="512"></media:thumbnail>
      <media:group>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_2MB_ch9.wmv" expression="full" duration="308" fileSize="570582182" type="video/x-ms-wmv" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_ch9.mp3" expression="full" duration="308" fileSize="2471357" type="audio/mp3" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_ch9.wma" expression="full" duration="308" fileSize="2504307" type="audio/x-ms-wma" medium="audio"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_high_ch9.mp4" expression="full" duration="308" fileSize="125199950" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_low_ch9.mp4" expression="full" duration="308" fileSize="29201527" type="video/mp4" medium="video"></media:content>
        <media:content url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_Zune_ch9.wmv" expression="full" duration="308" fileSize="42279336" type="video/x-ms-wmv" medium="video"></media:content>
      </media:group>      
      <enclosure url="http://ak.channel9.msdn.com/ch9/C308/27760164-B22F-4217-8996-9E970031C308/simzzdev_2MB_ch9.wmv" length="570582182" type="video/x-ms-wmv"></enclosure>
      <dc:creator>Bruce D Kyle</dc:creator>
      <itunes:author>Bruce D Kyle</itunes:author>
      <slash:comments>2</slash:comments>
      <wfw:commentRss>http://channel9.msdn.com/Blogs/bruceky/Teenager-Makes-Money-Writing-Windows-Phone-7-Apps-with-AdCenter/RSS</wfw:commentRss>
      <category>AdCenter</category>
      <category>ISV</category>
      <category>Phone 7</category>
      <category>USISV</category>
      <category>USISVDE</category>
      <category>Windows Phone</category>
      <category>Windows Phone 7</category>
      <category>Phone</category>
    </item>    
</channel>
</rss>