<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Vishal Sood : Media</title><link>http://blogs.iis.net/vsood/archive/tags/Media/default.aspx</link><description>Tags: Media</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Advanced Logging – How does Real-time logging work?</title><link>http://blogs.iis.net/vsood/archive/2009/03/20/advanced-logging-how-does-real-time-logging-work.aspx</link><pubDate>Fri, 20 Mar 2009 17:41:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3024684</guid><dc:creator>vsood</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=3024684</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2009/03/20/advanced-logging-how-does-real-time-logging-work.aspx#comments</comments><description>&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;
&lt;P&gt;We &lt;A href="http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx" mce_href="http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx"&gt;announced and release a Beta&lt;/A&gt; for a sparkling new Logging module for IIS at MIX 09. This is a super rich logging module with a lot of functionality that our team will continue to blog about. Today, I wanted to share more technical details on how my favorite feature, real-time logging work in Advanced Logging.&lt;/P&gt;
&lt;P&gt;Before we go into details, you may want to take a short pause and read some overview material in my &lt;A href="http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx" mce_href="http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx"&gt;blog post&lt;/A&gt;, &lt;A href="http://www.iis.net/extensions/advancedLogging" mce_href="http://www.iis.net/extensions/advancedLogging"&gt;extension page&lt;/A&gt; for Advanced Logging or go over the &lt;A href="http://learn.iis.net/page.aspx/579/advanced-logging-for-iis-70---custom-logging" mce_href="http://learn.iis.net/page.aspx/579/advanced-logging-for-iis-70---custom-logging"&gt;custom logging walkthrough&lt;/A&gt;. Okay, I will now assume you are somewhat familiar with this module.&lt;/P&gt;
&lt;P&gt;Next, let us take a scenario - You have a SL or any HTTP client that collects analytic information that you want to be able to send to IIS web server and get that captured in a log file. Let’s add a little twist, while you want this you also want to be able to write custom code that can consume this log information in real time and enable you to do some real time reporting. The reason you want to do that is just to provide a report on real-time interactions by clients or simply monitor your network in real-time.&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;Here is how IIS Advanced Logging helps&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;A href="http://blogs.iis.net/blogs/vsood/image_2A6CF09B.png" mce_href="http://blogs.iis.net/blogs/vsood/image_2A6CF09B.png"&gt;&lt;IMG style="BORDER-RIGHT-WIDTH: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px" title=image border=0 alt=image src="http://blogs.iis.net/blogs/vsood/image_thumb_32546D30.png" width=637 height=442 mce_src="http://blogs.iis.net/blogs/vsood/image_thumb_32546D30.png"&gt;&lt;/A&gt; 
&lt;P&gt;Let us go over this architecture, step-by-step:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The clients on the left hand side (could be Silverlight application, native Silverlight runtime, could be ASP.net or anything really), sends a HTTP POST message with the log in the body. It is a simple XML format and you can find details in the walkthrough &lt;A href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging" mce_href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging"&gt;Real-time Logging&lt;/A&gt;. &lt;/LI&gt;
&lt;LI&gt;This message lands on an IIS server that has Advanced Logging (AL) installed. The client logging functionality in AL parses this message and raises an internal event. &lt;/LI&gt;
&lt;LI&gt;The core server-side logging functionality gets this event and then looks up the log configuration to compose a log entry and writes it to the file. (Note: you would need to have relevant configuration so that AL knows what fields to expect. You can find an example in the &lt;A href="http://learn.iis.net/page.aspx/582/advanced-logging-for-iis-70---client-logging" mce_href="http://learn.iis.net/page.aspx/582/advanced-logging-for-iis-70---client-logging"&gt;Client logging walkthrough&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;In addition, just before an entry is written to the log file, server-side logging raises another event using public APIs (IIS HTTP_TRACE_EVENT infrastructure) that can be consumed by a simple module written by YOU. Believe me, it is a simple module. You can find details and sample code in the walkthrough &lt;A href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging" mce_href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging"&gt;Real-time Logging&lt;/A&gt;. &lt;/LI&gt;
&lt;LI&gt;Now, your module can take this information push it to a service in the cloud, a DB and produce reports in real-time. &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Let me know if you need more details. The best to learn more is to try it out :).&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=3024684" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Advanced+Logging/default.aspx">Advanced Logging</category><category domain="http://blogs.iis.net/vsood/archive/tags/Logging/default.aspx">Logging</category><category domain="http://blogs.iis.net/vsood/archive/tags/Real-time+Logging/default.aspx">Real-time Logging</category></item><item><title>IIS Advanced Logging Beta is now Live</title><link>http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx</link><pubDate>Wed, 18 Mar 2009 19:29:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:3017616</guid><dc:creator>vsood</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=3017616</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2009/03/18/iis-advanced-logging-is-now-live.aspx#comments</comments><description>&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;We proudly announce the Beta of IIS Advanced Logging.&amp;nbsp; With Advanced Logging you will be able to capture rich details in your logs and process them in real-time. These capabilities make this feature really compelling by&lt;SPAN style="FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt; helping you monetize your content with better analytics and improve service with rich QOS information.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal mce_keep="true"&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="MARGIN: 0in 0in 0pt" class=MsoNormal mce_keep="true"&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;IIS Advanced Logging includes the following features:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;B&gt;Client-side logging&lt;/B&gt;. Advanced Logging builds capabilities into IIS to accept client-side consumption metrics. This provides relevant and important user engagement metrics that your customers will love. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;B&gt;Centralized logging&lt;/B&gt;. Advanced Logging provides capabilities to set up a central log farm that collects and logs client-side metrics. This reduces the effort required to collect distributed logs, and consolidated log collection results in more efficient post-processing.&lt;/FONT&gt;&lt;/FONT&gt; I wanted to clarify that this is not for all logging. &lt;STRONG&gt;Note&lt;/STRONG&gt;: This is for client-side logging.&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;B&gt;Multiple Logs per request&lt;/B&gt;. Advanced Logging provides capabilities to filter information relevant to specific purposes by creating multiple logs per request, with each log containing data relevant to the log's purpose. For example, Quality of Service (QoS) data in one log and Analytics data in another. All the post-processing required to distill the information using today's solutions is no longer needed. &lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;B&gt;Real-time logging&lt;/B&gt;. Advanced Logging can extend the platform to support real-time analytics, helping you to provide real-time reports to customers or work with partners to do the same.&lt;/FONT&gt;&lt;/FONT&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;&lt;B&gt;Rich/Flexible logging&lt;/B&gt;. Advanced Logging does not assume what is important to you. Instead, it provides enough control to specify what fields are important to you, add additional fields with ease, and provide policies around log rollover and request filtering. These capabilities do not exist today. Now you can log any of the HTTP request/response headers, IIS server variables, and client-side fields with simple configuration through the management console.&lt;/FONT&gt;&lt;/FONT&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B&gt;Application Logging&lt;/B&gt;. Making use of the IIS configuration system, Advanced Logging provides capabilities to generate separate logs for sites, applications and so on.&lt;/FONT&gt;&lt;/FONT&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;STRONG&gt;Module Specific Log fields&lt;/STRONG&gt;. If you are developing modules for IIS, you can specify custom fields that can be collected in logs.&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp; &lt;/LI&gt;&lt;/UL&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;
&lt;P mce_keep="true"&gt;You can learn more about the feature by reading the walkthroughs:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://learn.iis.net/page.aspx/579/advanced-logging-for-iis-70---custom-logging/" target=_blank mce_href=" http://learn.iis.net/page.aspx/579/advanced-logging-for-iis-70---custom-logging/"&gt;Getting started with Advanced Logging&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A title="Real Time Logging" href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging" mce_href="http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70---real-time-logging"&gt;Real-Time Logging&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://learn.iis.net/page.aspx/582/advanced-logging-for-iis-70---client-logging/" target=_blank mce_href="http://learn.iis.net/page.aspx/582/advanced-logging-for-iis-70---client-logging/"&gt;Client Logging&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;Learn more about the feature on - &lt;A href="http://www.iis.net/extensions/AdvancedLogging"&gt;http://www.iis.net/extensions/AdvancedLogging&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;We eagerly await your feedback and comments on the &lt;A href="http://forums.iis.net/1160.aspx" target=_blank mce_href="http://forums.iis.net/1160.aspx"&gt;Advanced Logging Discussion Forum&lt;/A&gt;.&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=3017616" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+News+Item/default.aspx">IIS News Item</category><category domain="http://blogs.iis.net/vsood/archive/tags/Advanced+Logging/default.aspx">Advanced Logging</category></item><item><title>Web Playlists SMIL conversion tool</title><link>http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-smil-conversion-tool.aspx</link><pubDate>Fri, 12 Sep 2008 16:38:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2618457</guid><dc:creator>vsood</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2618457</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-smil-conversion-tool.aspx#comments</comments><description>
&lt;p&gt;With the &lt;a href="http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-release-candidate-rc-released.aspx" target="_blank" mce_href="http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-release-candidate-rc-released.aspx"&gt;RC version of Web Playlists&lt;/a&gt;, we moved from a custom XML format to a SMIL-based format for storing playlists. As a result of this change the old isx format has been retired. However, Brian Blum (a dev) in our team crafted a tool to help convert the old files. The tool can be downloaded &lt;a href="http://go.microsoft.com/?linkid=9493382" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493382"&gt;here&lt;/a&gt;. Thank you Brian!&lt;/p&gt;
  
&lt;p&gt;As both old and the new SMIL-based playlist formats are XML by nature, this tool uses a XSL to transform the old isx to the new SMIL-based isx format. Another reason for doing this is Brian wanted you to be able to do any minor changes if you so desire without needing to look into the code.&lt;/p&gt;
  
&lt;p&gt;The tool usage is simple and as follows:&lt;/p&gt;

&lt;p&gt;&lt;i&gt;isxTranslate.exe /? Coverts prerelease input files for IIS 7.0 Web Playlists to the release format.&lt;/i&gt;&lt;/p&gt;
    
&lt;p&gt;&lt;i&gt;Usage: isxTranslate /i PLAYLISTDIR /x XSLT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/i&gt;&lt;/p&gt;
    
&lt;blockquote&gt;
&lt;p&gt;&lt;i&gt;where PLAYLISTDIR is the path to your playlist files and&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/i&gt;&lt;/p&gt;
&lt;/blockquote&gt;
      
&lt;blockquote&gt;
&lt;p&gt;&lt;i&gt;XSLT is the xslt to use to convert the playlists. &lt;/i&gt;&lt;/p&gt;
&lt;/blockquote&gt;
    
&lt;p&gt;&lt;i&gt;Example: isxtranslate /i c:\inetweb\wwwroot\playlists /x c:\tools\isx.xsl&amp;nbsp; &lt;/i&gt;&lt;/p&gt;
&lt;b&gt;Note&lt;/b&gt;: This tool is just to help migrate old files and is not released as a part of Web Playlists RC download. As a result this tool is &lt;b&gt;not officially supported&lt;/b&gt;. We will be happy to answer any questions and would encourage you to use &lt;a href="http://forums.iis.net/1145.aspx" mce_href="http://forums.iis.net/1145.aspx"&gt;media forum&lt;/a&gt; for your questions.   
  
&lt;p&gt;&lt;b&gt;&lt;a href="http://go.microsoft.com/?linkid=9493382" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493382"&gt;DOWNLOAD THE TOOL HERE&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2618457" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Web Playlists Release Candidate (RC) Released</title><link>http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-release-candidate-rc-released.aspx</link><pubDate>Fri, 12 Sep 2008 16:08:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2618411</guid><dc:creator>vsood</dc:creator><slash:comments>14</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2618411</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/09/12/web-playlists-release-candidate-rc-released.aspx#comments</comments><description>&lt;p&gt;I am pleased to announce that the Web Playlists Release Candidate (RC) release is ready for you to download and deploy.&lt;/p&gt;  &lt;p&gt;This release supports upgrade from the previous Go Live release. (&lt;b&gt;Note&lt;/b&gt;: It is recommended that if you have a release earlier than Go Live, you should uninstall the old build and then use the downloads below to do a fresh installation.)&lt;/p&gt;  &lt;p&gt;You can get the RC downloads here: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;32 bit - &lt;a href="http://go.microsoft.com/?linkid=9493384" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493384"&gt;Download&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;64 bit - &lt;a href="http://go.microsoft.com/?linkid=9493385" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493385"&gt;Download&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;SDK - &lt;a href="http://go.microsoft.com/?linkid=9493383" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493383"&gt;Download&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Here is a list of walkthroughs published that will help you get going with this release:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=8388531" target="_blank" mce_href="http://go.microsoft.com/?linkid=8388531"&gt;Web Playlists for IIS 7.0 - Setup and Configuration&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=8388530" target="_blank" mce_href="http://go.microsoft.com/?linkid=8388530"&gt;Web Playlists for IIS 7.0 - Creating a Simple Playlist&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=8388532" target="_blank" mce_href="http://go.microsoft.com/?linkid=8388532"&gt;Web Playlists for IIS 7.0 – Using Playlist with different Media Players&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=8745726" target="_blank" mce_href="http://go.microsoft.com/?linkid=8745726"&gt;Web Playlists for IIS 7.0 – Extending Web Playlists through custom providers&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=9489149" target="_blank" mce_href="http://go.microsoft.com/?linkid=9489149"&gt;Web Playlists for IIS 7.0 – Extending Output Formats using XSLT&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Please refer to the &lt;a href="http://go.microsoft.com/?linkid=9493379" target="_blank" mce_href="http://go.microsoft.com/?linkid=9493379"&gt;online readme&lt;/a&gt; for more details. &lt;/p&gt;  &lt;p&gt;For general information on how Web Playlists work, please see this &lt;a href="http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx" mce_href="http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx"&gt;post&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;For us, this release was primarily about two things:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;A step towards embracing open standards - The playlist format now is SMIL-based and additionally you can output the playlist in any XML/text format. The &lt;a href="http://go.microsoft.com/?linkid=9489149" target="_blank" mce_href="http://go.microsoft.com/?linkid=9489149"&gt;walkthrough&lt;/a&gt; talks more about this feature and illustrates and example where you can use ATOM as an output format. &lt;/li&gt;    &lt;li&gt;Even more thorough testing - This is incremental release over our earlier Go Live release and our test team has tested it even more than previous release &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The three key new features in Web Playlists RC release are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Ability to customize output format&lt;/b&gt; - This release enables you to change the response to a Web Playlists request to a format understood by your app. This feature works by taking and XSL style-sheet from you and transforming the ASX response according to it. The &lt;a href="http://go.microsoft.com/?linkid=9489149" target="_blank" mce_href="http://go.microsoft.com/?linkid=9489149"&gt;walkthrough&lt;/a&gt; talks about this in more details. &lt;/li&gt;    &lt;li&gt;&lt;b&gt;Allow Client-side Caching&lt;/b&gt; - Earlier releases of Web Playlists disabled the client-side caching using http headers. We got customer requests suggesting that although this is a great security feature, they would like to control this so in this release we allow you just that. You can control, whether clients can cache content or not. &lt;/li&gt;    &lt;li&gt;&lt;b&gt;SMIL-based playlist format&lt;/b&gt; - Earlier releases used a custom XML. With this release, we are moving a step closer to open standards. We are now using a SMIL-based format. While, Web Playlists does not support the entire SMIL syntax, the sub-set supported is fully SMIL compliant. For those upgrading from previous builds, there is a &lt;a href="http://go.microsoft.com/fwlink/?LinkID=127838" target="_blank" mce_href="http://go.microsoft.com/fwlink/?LinkID=127838"&gt;tool available here&lt;/a&gt; to convert old isx files. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;We would like to hear what you feel about this release and would love to hear how you are using it. &lt;/p&gt;  &lt;p&gt;Got more questions or need support?: Please use &lt;a href="http://forums.iis.net/1145.aspx" mce_href="http://forums.iis.net/1145.aspx"&gt;media forum&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2618411" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+News+Item/default.aspx">IIS News Item</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Web Playlists - using SMIL as input format</title><link>http://blogs.iis.net/vsood/archive/2008/08/07/web-playlists-using-smil-as-input-format.aspx</link><pubDate>Thu, 07 Aug 2008 16:40:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2543822</guid><dc:creator>vsood</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2543822</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/08/07/web-playlists-using-smil-as-input-format.aspx#comments</comments><description>&lt;P&gt;In our strive to make it utmost convenient for our customers to use Web Playlists, we are considering another feature. In &lt;A href="http://blogs.iis.net/vsood/archive/2008/07/26/web-playlists-output-format.aspx" target=_blank mce_href="http://blogs.iis.net/vsood/archive/2008/07/26/web-playlists-output-format.aspx"&gt;my last post&lt;/A&gt; I discussed the option of being able to configure the output format for Web Playlists and use open standards like ATOM as possible output in addition to ASX today. We are actually thinking of allowing you to add a XSLT and then be able to configure the output format of your choice that way.&lt;/P&gt;
&lt;P&gt;Continuing on the same lines I wanted to explore the option of a standard input format this time. Today we use POX. While this works, it has the problems of not being understood by other media servers and honestly you have to learn a new format. The idea we have now is to use SMIL as an input format. Windows Media Services already understands the SMIL input for Server-side Playlists and so do many other media server platforms. For this release, we are exploring supporting only a sub-set of SMIL modules- SMIL Structure, Media Object (audio,video and ref) and Metainformation modules.&lt;/P&gt;
&lt;P&gt;Here is an example of the SMIL playlist would look like. We haven't closed on this yet and would love to hear any inputs you might have here (the example uses SMIL 2.1 but it would really work with SMIL 2.0 or SMIL 3.0 too)&lt;/P&gt;&lt;PRE class=code&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;!&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;DOCTYPE &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;smil &lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;PUBLIC &lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;-//W3C//DTD SMIL 2.1//EN&lt;/SPAN&gt;"
                      "&lt;SPAN style="COLOR: blue"&gt;http://www.w3.org/2005/SMIL21/SMIL21.dtd&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;  
&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;smil &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;http://www.w3.org/2005/SMIL21/Language&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
  &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;head&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;meta &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;title&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;Web Playlists Sample&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;/&amp;gt;    
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;meta &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;author&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;IIS.net&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;/&amp;gt;    
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;meta &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;copyright&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;(c)2008 Microsoft Corporation&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;/&amp;gt;
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;meta &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;timeToLive&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;1440&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;/&amp;gt;    
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;meta &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;inactivityTimeout&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;120&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;/&amp;gt;    
  &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;head&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
  &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;body&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
    &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;ref &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;src&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;a.wmv&lt;/SPAN&gt;" &lt;SPAN style="COLOR: blue"&gt;&amp;gt;
      &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;param &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;canSkipForward&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;value&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;true&lt;/SPAN&gt;" &lt;SPAN style="COLOR: blue"&gt;/&amp;gt;
      &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;param &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;canSkipBack&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;value&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;true&lt;/SPAN&gt;" &lt;SPAN style="COLOR: blue"&gt;/&amp;gt;
      &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;param &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;canSeek&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;value&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;=&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;true&lt;/SPAN&gt;" &lt;SPAN style="COLOR: blue"&gt;/&amp;gt;
&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;    &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;ref&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
  &amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;body&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;
&amp;lt;/&lt;/SPAN&gt;&lt;SPAN style="COLOR: #a31515"&gt;smil&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;

&lt;/SPAN&gt;&lt;/PRE&gt;&lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;&lt;A href="http://11011.net/software/vspaste" mce_href="http://11011.net/software/vspaste"&gt;&lt;/A&gt;
&lt;P&gt;How do you feel about this change? We would love to hear from you.&lt;/P&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2543822" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category></item><item><title>Web Playlists output format</title><link>http://blogs.iis.net/vsood/archive/2008/07/26/web-playlists-output-format.aspx</link><pubDate>Sat, 26 Jul 2008 21:36:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2516665</guid><dc:creator>vsood</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2516665</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/07/26/web-playlists-output-format.aspx#comments</comments><description>&lt;P&gt;We recently release the &lt;A title="Go Live of Web Playlists module " href="http://blogs.iis.net/vsood/archive/2008/07/21/web-playlists-go-live-release-is-now-ready-for-downloads.aspx" mce_href="http://blogs.iis.net/vsood/archive/2008/07/21/web-playlists-go-live-release-is-now-ready-for-downloads.aspx"&gt;Go Live of Web Playlists module &lt;/A&gt;and I am sure a lot of you are already beginning to realize the potential of this feature.&lt;/P&gt;
&lt;P&gt;After the release our very smart set of engineers are figuring what can we do with this feature next? There is always a balance we need to draw in the features we can support and how soon can we get the product out, so that our customers (you) can benefit from it. &lt;/P&gt;
&lt;P&gt;One thing we wanted to explore and hear your feedback on is the output format for the Web Playlists. While we allow you to change the input format, using custom providers, we do not have a way for you to change the output format. Currently, Web Playlists outputs ASX (client-side playlist) as the output. If you don' know much about ASX, it is basically a client-side playlist format (XML based) supported by Windows Media Player and Silverlight. You can also make it work with the Flash player and we have more details &lt;A href="http://learn.iis.net/page.aspx/384/web-playlists-for-iis-70--using-playlist-with-different-players/" target=_blank mce_href="http://learn.iis.net/page.aspx/384/web-playlists-for-iis-70--using-playlist-with-different-players/"&gt;here&lt;/A&gt;. You can read more about the ASX format on MSDN &lt;A href="http://msdn.microsoft.com/en-us/library/aa914047.aspx" target=_blank mce_href="http://msdn.microsoft.com/en-us/library/aa914047.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The question I have for all you is how much do you care about the output format? Would it be beneficial if we enabled you to output the client side playlist in format of your choice (other than ASX) too, or supported something like &lt;A href="http://en.wikipedia.org/wiki/ATOM" target=_blank mce_href="http://en.wikipedia.org/wiki/ATOM"&gt;ATOM syndication format&lt;/A&gt; (&lt;A href="http://tools.ietf.org/html/rfc4287" target=_blank mce_href="http://tools.ietf.org/html/rfc4287"&gt;RFC 4287&lt;/A&gt;)out of the box?&lt;/STRONG&gt; In our team we deeply care about your feedback so any thoughts are really helpful.&lt;/P&gt;
&lt;P&gt;If you have more questions, I will love to answer them.&lt;/P&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2516665" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category><category domain="http://blogs.iis.net/vsood/archive/tags/ASX/default.aspx">ASX</category></item><item><title>Making Web Playlists URLs better with URL Rewrite module</title><link>http://blogs.iis.net/vsood/archive/2008/07/22/making-web-playlists-urls-better-with-url-rewrite-module.aspx</link><pubDate>Tue, 22 Jul 2008 03:21:09 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2504602</guid><dc:creator>vsood</dc:creator><slash:comments>7</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2504602</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/07/22/making-web-playlists-urls-better-with-url-rewrite-module.aspx#comments</comments><description>&lt;p&gt;I have been recently reading about the entire RESTful web services and constantly looking at how we can make our modules more REST friendly in terms of URL look-n-feel and also the output they return (if any). I &lt;a href="http://vishalsood.com/content/2008/05/30/web-20-building-block-1-rest-who-does-not-need" target="_blank"&gt;blogged about RESTful web services&lt;/a&gt; in case anyone is interested in knowing more about REST.&lt;/p&gt;  &lt;p&gt;At the same time, if you were following &lt;a href="http://blogs.iis.net/bills/archive/2008/05/31/urlrewrite-module-for-iis7.aspx" target="_blank"&gt;Bill's blog, IIS team released URL re-write module&lt;/a&gt;. IIS pipeline architecture is such that it almost always requires an extension, URL re-write module helps overcome this limitation. In this post I plan to cover how we can make Web Playlists URLs look prettier (and aligned to REST principles).&lt;/p&gt;  &lt;p&gt;Today, Web Playlists URLs are look something like this &lt;a href="http://www.example.com/a.isx"&gt;http://www.example.com/a.isx&lt;/a&gt;. For someone looking at this URL and trying to understand, it does mean much. As you have been following my blog all this while ;), you know what isx is (Web Playlists file) but not everyone does. One of the principles of REST as I see applied is that URLs should tell you a lot about what to expect in the response. Let us see how we can live this principle for Web Playlists.&lt;/p&gt;  &lt;p&gt;Consider the URLs below&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://example.com/Playlist('a')"&gt;http://example.com/Playlist('a')&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://example.com/Playlist/a"&gt;http://example.com/Playlist/a&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;These URLs clearly tell me what to expect as a response. It tells me that response will be a playlist of some kind. &lt;/p&gt;  &lt;h2&gt;Creating a Rule&lt;/h2&gt;  &lt;p&gt;Let us take the URL &lt;a href="http://example.com/Playlist('a'"&gt;http://example.com/Playlist('a')&lt;/a&gt;. In this case the URL tells you that there is a playlist 'a' that this URL refers to. This syntax is very much similar to the Astoria syntax. &amp;quot;Astoria&amp;quot; is the code name for &lt;a href="http://blogs.msdn.com/astoriateam/default.aspx"&gt;ADO.net Data Services&lt;/a&gt;. They are heavily investing in defining URL syntax. Let us see how we can get our existing URLs to look like more like Astoria URLs. &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;We need to first install URL re-writer module. This is an Out of Band module available for free download from &lt;a href="http://www.iis.net"&gt;http://www.iis.net&lt;/a&gt; site: &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1691" target="_blank"&gt;32-bit&lt;/a&gt; and &lt;a href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1692" target="_blank"&gt;64-bit&lt;/a&gt;. Once you install you will see the Icon for URL re-writer appear in IIS Manager (highlighted below) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_2.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="291" alt="image" src="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_thumb.png" width="386" border="0" /&gt;&lt;/a&gt; (click to see a larger image)&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Double-click on the icon and then click &amp;quot;Add Rule...&amp;quot;. Then add rule as per image below: &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_4.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="272" alt="image" src="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_thumb_1.png" width="291" border="0" /&gt;&lt;/a&gt; (click to see a larger image)&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;For the people familiar with IIS configuration files, this creates the following entry in the IIS config file &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_6.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="122" alt="image" src="http://blogs.iis.net/blogs/vsood/WindowsLiveWriter/MakingWebPlaylistsURLsbetterwithURLRewri_11E30/image_thumb_2.png" width="364" border="0" /&gt;&lt;/a&gt; (click to see a larger image)&lt;/p&gt;  &lt;h2&gt;How does this rule work?&lt;/h2&gt;  &lt;p&gt;If we dissect this rule, &amp;quot;^(.*)/*Playlist\((.*)\)$&amp;quot; pattern says that in URL match everything before &amp;quot;/Playlist&amp;quot; and then match everything in between (). As per the URL re-writer module semantics these will be stored in {R:1} and {R:2} variables which are then used while re-writing the rule. (E.g., in &lt;a href="http://example.com/Playlist('a'"&gt;http://example.com/Playlist('a'&lt;/a&gt;) {R:1} becomes blank and {R:2}becomes a. This is because only URL relative to site root are matched. Thus as per the rule the initial URL will be re-written as &lt;a href="http://example.com/a.isx"&gt;http://example.com/a.isx&lt;/a&gt; which is understood by the IIS7 pipeline.&lt;/p&gt;  &lt;h2&gt;Re-cap&lt;/h2&gt;  &lt;p&gt;In this post I ran through an example of how you could use URL-writer to create friendlier URLs for Web Playlists. I would really like to encourage you to play with URL re-write module to create the other URL form (&lt;a href="http://example.com/Playlist/a"&gt;http://example.com/Playlist/a&lt;/a&gt;) and share it as comments to this blog. &lt;/p&gt;  &lt;p&gt;I would suggest starting with the walkthroughs &lt;a href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/" target="_blank"&gt;here&lt;/a&gt;. Happy re-writing and looking forward to your comments.&lt;/p&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2504602" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Web Playlists Go Live release is now ready for downloads</title><link>http://blogs.iis.net/vsood/archive/2008/07/21/web-playlists-go-live-release-is-now-ready-for-downloads.aspx</link><pubDate>Mon, 21 Jul 2008 21:33:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2504279</guid><dc:creator>vsood</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2504279</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/07/21/web-playlists-go-live-release-is-now-ready-for-downloads.aspx#comments</comments><description>&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;I am really excited to announce that Web Playlists Go Live was just released to public. Here are the download links for the same:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;A class="" href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1714" target=_blank mce_href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1714"&gt;Web Playlist for IIS 7.0, 64 Bit (x64)&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;A class="" href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1713" target=_blank mce_href="http://www.iis.net/downloads/default.aspx?tabid=34&amp;amp;g=6&amp;amp;i=1713"&gt;Web Playlist for IIS 7.0, 32 Bit (x86)&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Here is a list of walkthroughs published on the all new learn.iis.net: &lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A class="" href="http://learn.iis.net/page.aspx/385/web-playlists-for-iis-70---setup-and-configuration/" target=_blank mce_href="http://learn.iis.net/page.aspx/385/web-playlists-for-iis-70---setup-and-configuration/"&gt;Web Playlists for IIS 7.0 - Setup and Configuration&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://learn.iis.net/page.aspx/382/web-playlist---creating-a-simple-playlist/" target=_blank mce_href="http://learn.iis.net/page.aspx/382/web-playlist---creating-a-simple-playlist/"&gt;Web Playlists for IIS 7.0 - Creating a Simple Playlist&lt;/A&gt; &lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://learn.iis.net/page.aspx/384/web-playlists-for-iis-70--using-playlist-with-different-players/" target=_blank mce_href="http://learn.iis.net/page.aspx/384/web-playlists-for-iis-70--using-playlist-with-different-players/"&gt;Web Playlists for IIS 7.0 – Using Playlist with different Media Players&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A class="" href="http://learn.iis.net/page.aspx/448/web-playlist-for-iis-70---extending-web-playlists/" target=_blank mce_href="http://learn.iis.net/page.aspx/448/web-playlist-for-iis-70---extending-web-playlists/"&gt;Web Playlists for IIS 7.0 – Extending Web Playlists through custom providers&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Here is more about this release: &lt;A class="" href="http://www.iis.net/Downloads/files/playlist/WebPlaylists_Readme_GoLive.htm" target=_blank mce_href="http://www.iis.net/Downloads/files/playlist/WebPlaylists_Readme_GoLive.htm"&gt;http://www.iis.net/Downloads/files/playlist/WebPlaylists_Readme_GoLive.htm&lt;/A&gt;. &amp;nbsp; &lt;/P&gt;
&lt;P&gt;For general information on how Web Playlists work, please see this &lt;A class="" href="http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx" target=_blank mce_href="http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx"&gt;post&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Web Playlists Go Live release includes these key features: &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Support for all digital media files types&lt;/STRONG&gt;. Any digital media file type that can be downloaded from a Web server can be added to a Web playlist by using this feature.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Nested Web playlist media entries&lt;/STRONG&gt;. Web playlist files (.isx) can be added as media entries to the Web playlists that you create, up to five levels deep. For more information about how nested playlists work in this feature, see &lt;A class="" href="http://go.microsoft.com/?linkid=8388530" target=_blank mce_href="http://go.microsoft.com/?linkid=8388530"&gt;Creating a Simple Playlist&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Remote HTTPd media entries&lt;/STRONG&gt;. Content locations that begin with the httpd:// URL prefix can be added as media entries to the Web playlists that you create, allowing you to reference a remote Web server page that returns a custom URL or path for the media item to be played.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Session settings&lt;/STRONG&gt;. Allows you to specify the maximum number of clients that can connect to the playlist and the amount of content that must be watched before skip functionality is enabled on the client.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Session provider settings&lt;/STRONG&gt;. Allows you to add ASP.NET session persistence and provides an additional level of control for the content on a Web server by configuring multiple options that specify how long the content referenced by a playlist is available to users.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Impersonation settings&lt;/STRONG&gt;. Allows for media items that are protected by user credentials to be added to playlists.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;ASX import&lt;/STRONG&gt;. Allows for quick conversion of client-side playlists (files with .asx file name extensions) for files stored on the Web server to Web playlists.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Custom providers&lt;/STRONG&gt;. A COM interface is included that you can use to write native and .NET-based custom providers that extend the default behavior of Web Playlists. For more information, see the &lt;A class="" href="http://go.microsoft.com/?linkid=8745726" target=_blank mce_href="http://go.microsoft.com/?linkid=8745726"&gt;Extending Web Playlists through custom providers&lt;/A&gt;. &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Got more questions or need support?: Please use &lt;A class="" href="http://forums.iis.net/1145.aspx" target=_blank mce_href="http://forums.iis.net/1145.aspx"&gt;media forum&lt;/A&gt;. &lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2504279" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+News+Item/default.aspx">IIS News Item</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Web Playlists - How does that thing work?</title><link>http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx</link><pubDate>Thu, 01 May 2008 04:31:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2331298</guid><dc:creator>vsood</dc:creator><slash:comments>31</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2331298</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx#comments</comments><description>Web Playlists! CTP2 been out there for a little more than a week now and some of you simply love it. Others, I am sure love it but I just don't know about that. Some others wonder how it works and the documentation available is a drop in the ocean. Firstly...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/05/01/web-playlists-how-does-that-thing-work.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2331298" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Short-cut to integrate Web Playlists with an existing web application</title><link>http://blogs.iis.net/vsood/archive/2008/04/29/short-cut-to-integrate-web-playlists-with-an-existing-web-application.aspx</link><pubDate>Tue, 29 Apr 2008 05:57:32 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2326683</guid><dc:creator>vsood</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2326683</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/04/29/short-cut-to-integrate-web-playlists-with-an-existing-web-application.aspx#comments</comments><description>If you read my post / walkthroughs you probably know about the extensibility interface shipped with CTP2. You can use that to integrate into existing business logic applications or web applications. However, in this post I am going to talk about a shortcut...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/04/29/short-cut-to-integrate-web-playlists-with-an-existing-web-application.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2326683" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Bit Rate Throttling is the pick of the week on Channel 9</title><link>http://blogs.iis.net/vsood/archive/2008/04/22/bit-rate-throttling-is-pick-of-the-week-on-channel-9.aspx</link><pubDate>Tue, 22 Apr 2008 20:30:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2314559</guid><dc:creator>vsood</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2314559</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/04/22/bit-rate-throttling-is-pick-of-the-week-on-channel-9.aspx#comments</comments><description>Bit Rate Throttling was Brian's pick of the week on channel 9. We love you Brian :) Here is the link to video and the post on the site - Click (To see the relevant section in the video seek to around 16:28 into the video.) Here is the excerpt from the...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/04/22/bit-rate-throttling-is-pick-of-the-week-on-channel-9.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2314559" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Bit+Rate+Throttling/default.aspx">Bit Rate Throttling</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Exploring Custom providers - Wrapper playlists</title><link>http://blogs.iis.net/vsood/archive/2008/04/22/exploring-custom-providers-wrapper-playlists.aspx</link><pubDate>Tue, 22 Apr 2008 18:40:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2314341</guid><dc:creator>vsood</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2314341</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/04/22/exploring-custom-providers-wrapper-playlists.aspx#comments</comments><description>In my blog post yesterday I mentioned that we will be releasing sample code written by our teams as reference. Here is the first one. Prakash blogged about a custom provider that provides a wrapper playlist like functionality through a simple playlist...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/04/22/exploring-custom-providers-wrapper-playlists.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2314341" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>IIS 7 Media Pack Web Playlists Customer Technology Preview 2 (CTP2) is Live </title><link>http://blogs.iis.net/vsood/archive/2008/04/22/iis-7-media-pack-web-playlists-customer-technology-preview-2-ctp2-is-live.aspx</link><pubDate>Tue, 22 Apr 2008 00:28:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2312113</guid><dc:creator>vsood</dc:creator><slash:comments>7</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2312113</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/04/22/iis-7-media-pack-web-playlists-customer-technology-preview-2-ctp2-is-live.aspx#comments</comments><description>I am really happy to announce that Web Playlists CTP2 is now released. Web Playlists CTP2 builds on top of CTP1 release that we had in February. It has the following additional features Extensibility through custom providers – We are releasing interfaces...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/04/22/iis-7-media-pack-web-playlists-customer-technology-preview-2-ctp2-is-live.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2312113" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+News+Item/default.aspx">IIS News Item</category><category domain="http://blogs.iis.net/vsood/archive/tags/Web+Playlists/default.aspx">Web Playlists</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category></item><item><title>Bit Rate Throttling is 1 week old - some interesting thoughts and applications</title><link>http://blogs.iis.net/vsood/archive/2008/03/21/bit-rate-throttling-is-1-week-some-interesting-thoughts-and-applications.aspx</link><pubDate>Fri, 21 Mar 2008 20:55:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2247922</guid><dc:creator>vsood</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2247922</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/03/21/bit-rate-throttling-is-1-week-some-interesting-thoughts-and-applications.aspx#comments</comments><description>Last week, we announced the release of Bit Rate Throttling (BRT) module and there has been a lot of positive feedback already. I love the way the world of media latches on to new things so fast. Scott Guthrie posted about the release in his blog here...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/03/21/bit-rate-throttling-is-1-week-some-interesting-thoughts-and-applications.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2247922" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Bit+Rate+Throttling/default.aspx">Bit Rate Throttling</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category><category domain="http://blogs.iis.net/vsood/archive/tags/BRT/default.aspx">BRT</category></item><item><title>Dynamic Throttling with Bit Rate Throttling</title><link>http://blogs.iis.net/vsood/archive/2008/03/17/dynamic-throttling-with-bit-rate-throttling.aspx</link><pubDate>Mon, 17 Mar 2008 20:56:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2238462</guid><dc:creator>vsood</dc:creator><slash:comments>20</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.iis.net/vsood/rsscomments.aspx?PostID=2238462</wfw:commentRss><comments>http://blogs.iis.net/vsood/archive/2008/03/17/dynamic-throttling-with-bit-rate-throttling.aspx#comments</comments><description>In the latest RTW release of Bit Rate Throttling, we have an amazing feature - dynamic throttling. It can also be looked at as bandwidth splitting. The primary intentions of this post is to serve as an introduction to this feature. In our earlier releases...(&lt;a href="http://blogs.iis.net/vsood/archive/2008/03/17/dynamic-throttling-with-bit-rate-throttling.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2238462" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/vsood/archive/tags/Media/default.aspx">Media</category><category domain="http://blogs.iis.net/vsood/archive/tags/Bit+Rate+Throttling/default.aspx">Bit Rate Throttling</category><category domain="http://blogs.iis.net/vsood/archive/tags/IIS+Media+Pack/default.aspx">IIS Media Pack</category><category domain="http://blogs.iis.net/vsood/archive/tags/dynamic+throttling/default.aspx">dynamic throttling</category></item></channel></rss>