<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type='text/xsl' href='http://microsoftwow.spaces.live.com/mmm2008-07-24_12.50/rsspretty.aspx?rssquery=en-US;http%3a%2f%2fmicrosoftwow.spaces.live.com%2fcategory%2fMSDN%2ffeed.rss' version='1.0'?><rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:msn="http://schemas.microsoft.com/msn/spaces/2005/rss" xmlns:live="http://schemas.microsoft.com/live/spaces/2006/rss" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Microsoft Wow Blog!: MSDN</title><description /><link>http://microsoftwow.spaces.live.com/?_c11_BlogPart_BlogPart=blogview&amp;_c=BlogPart&amp;partqs=catMSDN</link><language>en-US</language><pubDate>Sat, 16 Aug 2008 03:51:08 GMT</pubDate><lastBuildDate>Sat, 16 Aug 2008 03:51:08 GMT</lastBuildDate><generator>Microsoft Spaces v1.1</generator><docs>http://www.rssboard.org/rss-specification</docs><ttl>60</ttl><cf:parentRSS>http://microsoftwow.spaces.live.com/blog/feed.rss</cf:parentRSS><live:type>blogcategory</live:type><live:identity><live:id>2924560840743405546</live:id><live:alias>microsoftwow</live:alias></live:identity><cf:listinfo><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="typelabel" label="Type" /><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="tag" label="Tag" /><cf:group element="category" label="Category" /><cf:sort element="pubDate" label="Date" data-type="date" default="true" /><cf:sort element="title" label="Title" data-type="string" /><cf:sort ns="http://purl.org/rss/1.0/modules/slash/" element="comments" label="Comments" data-type="number" /></cf:listinfo><item><title>Getting started with SQL Server Data Services</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!2028.entry</link><description>&lt;p&gt;A couple of days ago, I received a mail from &lt;a href="http://connect.microsoft.com/"&gt;Microsoft Connect&lt;/a&gt; which confirmed me as a private tester for Microsoft SQL Server Data Services. While I am still exploring this new service, I just thought of guiding all those interested in this service in order to help you get started with SQL Server Data Services a.k.a SSDS but first up, what is SSDS?&lt;a href="http://startupmeme.com/wp-content/uploads/2008/07/sql-server-2008.png"&gt;&lt;img border=0 alt="SQL Server 2008" align=right src="http://startupmeme.com/wp-content/uploads/2008/07/sql-server-2008-thumb.png" width=244 height=58&gt;&lt;/a&gt; &lt;p&gt;At this years MIX, Microsoft unveiled SQL Server Data Services as a direct competitor to &lt;a href="http://www.amazon.com/SimpleDB-AWS-Service-Pricing/b?ie=UTF8&amp;amp;node=342335011"&gt;Amazon SimpleDB&lt;/a&gt;. SQL Server Data Services  is a web-facing utility-based service designed for businesses and developers that need scalable, highly available, secure and easily programmable on-demand data storage with robust database query capabilities. The platform is built upon existing Microsoft SQL Server relational database technologies. So basically it’s a cloud-based repository service that will offer APIs that enable storage in the cloud. &lt;p&gt;More on SSDS from Microsoft’s FAQ: &lt;blockquote&gt; &lt;p&gt;&lt;b&gt;Will SSDS support everything in SQL Server?&lt;/b&gt;&lt;br&gt;SSDS will initially only expose a small subset of what is in SQL Server. Microsoft says it plans to extend the capabilities of SSDS over time with such features as binary large object columns, full text search, and richer data types. &lt;p&gt;&lt;b&gt;How will developers and customers use SSDS?&lt;/b&gt;&lt;br&gt;It is designed to let developers rapidly run on-demand applications, while end users will be able to query and modify any amount data. SSDS will support REST and SOAP interfaces, which are designed to work with any Internet-development toolkit. XML is the primary interface. &lt;p&gt;&lt;b&gt;What might SSDS be used for?&lt;/b&gt;&lt;br&gt;Data archival, reference data such as catalogs, business functions such as HR services (ie. healthcare records management), and Web facing applications including social networking and picture sharing.&lt;/blockquote&gt; &lt;p&gt;So how do you get started? The SSDS program as of now is only open to a small group of private testers but the number of testers are increasing rapidly on daily basis as the service approaches a public beta soon.  &lt;p&gt;To use SQL Server Data Services (SSDS), you first need to sign up for the service and acquire a user name and password. For this private beta release, you go to &lt;tt&gt;&lt;a href="http://www.microsoft.com/sql/dataservices/default.mspx "&gt;http://www.microsoft.com/sql/dataservices/default.mspx&lt;/a&gt;&lt;/tt&gt; and register your request for the free beta. Invitations are sent via e-mail. Each invitee receives an invitation id. Once you have received your invitation, you go to &lt;tt&gt;&lt;a href="https://beta.mssds.com/public/Default.aspx"&gt;https://beta.mssds.com/public/Default.aspx&lt;/a&gt;&lt;/tt&gt;, provide your invitation id, and then obtain the necessary credentials to access the data service. After you obtain credentials, you can programmatically create and query flexible entities. &lt;p&gt;SSDS is a Web 2.0 friendly data service. It supports both SOAP and REST interfaces. As a result, developers can use almost any language or development environment that supports these interfaces. Queries are made using a LINQ syntax from C#. To develop applications with Visual Studio, you will need version 2005 or later. &lt;a href="http://msdn.microsoft.com/en-us/vs2008/default.aspx"&gt;Visual Studio 2008&lt;/a&gt; is the preferred development environment for use with SQL Server Data Services. &lt;p&gt;Several samples are provided in various languages including C#, Java and Ruby. The C# samples are authored in the Microsoft Visual Studio integrated development environment. One of the samples which I am using to learn program this service is &lt;a href="http://forums.msdn.microsoft.com/en/ssdsgetstarted/thread/44be8c8e-a22f-4a5a-aa54-2badc851ffaa"&gt;this one&lt;/a&gt; posted in &lt;a href="http://forums.msdn.microsoft.com/"&gt;MSDN forums&lt;/a&gt; by Mike Amundsen. The demo has two parts: a SSDS Proxy server built in C# and a web client done in Ajax. I’ll highly recommend to try out this app to those interested! &lt;p align=center&gt;&lt;a href="http://startupmeme.com/wp-content/uploads/2008/07/ssds-logo.png"&gt;&lt;img border=0 alt="Microsoft SQL Server Data Services" src="http://startupmeme.com/wp-content/uploads/2008/07/ssds-logo-thumb.png" width=377 height=115&gt;&lt;/a&gt; &lt;p&gt;I will follow up with my example using SOAP or REST interfaces to develop applications with SQL Server Data Services in C# here at my blog very soon. Might come up with a Webcast too if I get a good response. So do let me know that whether you guys prefer a step by step tutorial or a Webcast session? Last but not the least, dont forget to &lt;a href="http://connect.microsoft.com/InvitationUse.aspx?ProgramID=2089&amp;amp;SiteID=547&amp;amp;InvitationID=SSDS-P7VT-X43V"&gt;sign up&lt;/a&gt; to get your hands on this service as soon as possible! &lt;p&gt;&lt;em&gt;&lt;strong&gt;Taimur Asad&lt;/strong&gt; (Via &lt;a href="http://startupmeme.com/2008/07/03/getting-started-with-sql-server-data-services/" target="_blank"&gt;Startup Meme&lt;/a&gt;)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Getting+started+with+SQL+Server+Data+Services&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!2028.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!2028.entry</guid><pubDate>Fri, 04 Jul 2008 07:09:41 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!2028/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!2028.entry#comment</wfw:comment><dcterms:modified>2008-07-04T07:09:41Z</dcterms:modified></item><item><title>Silverlight 2 Beta 2, Expression Blend 2.5 June Preview Released</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1975.entry</link><description>&lt;p&gt;Silverlight 2 Beta2 was released today.  You can download both Silverlight 2 Beta2 and the Visual Studio and Expression Blend tools support to target it &lt;a href="http://silverlight.net/GetStarted/"&gt;here&lt;/a&gt;.&lt;img alt="Microsoft Silverlight" align=right src="http://img105.imageshack.us/img105/969/microsoftsilverlighttq0.png"&gt; &lt;p&gt;Beta2 adds a lot of new features (more details below), but is still a 4.6 MB download that takes less than 10 seconds to install on a machine.  It does not require the .NET Framework or any other software to be installed for it to work, and all features work cross-browser on both Mac and Windows machines.  These features will also be supported on Linux via the Moonlight 2 release. &lt;p&gt;Silverlight 2 Beta2 supports a go-live license that allows you to start using and deploying Silverlight 2 for commercial applications. There will be some API changes between Beta2 and the final release, so you should expect that applications you write with Beta2 will need to make some updates when the final release comes out.  But we think that these changes will be straight-forward and relatively easy, and that you can begin planning and starting commercial projects now. &lt;p&gt;You can build Silverlight Beta2 applications using the VS 2008 Tools for Silverlight and Expression Blend 2.5 June Preview downloads.  You can download both of them &lt;a href="http://silverlight.net/GetStarted/"&gt;here&lt;/a&gt;.  The VS 2008 Tools for Silverlight download works with both VS 2008 and the recent &lt;a href="http://weblogs.asp.net/scottgu/archive/2008/05/12/visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx"&gt;VS 2008 SP1 beta&lt;/a&gt; release.  &lt;h5&gt;&lt;u&gt;UI and Control Improvements&lt;/u&gt;&lt;/h5&gt; &lt;p&gt;Silverlight 2 Beta2 includes a bunch of work in the UI and Control space:&lt;img alt="Microsoft Expression Studio 2" align=right src="http://ccuepg.bay.livefilestore.com/y1pv-J_8eCN1ISmFNsoaN9QFAMiCHvw94dvaY67NNRycyzHOcqjnH1346fgaRKit6gT-hSkpTfz1ml1JcU0UhkyLw/Expression 2 Box.jpg"&gt; &lt;p&gt;&lt;u&gt;&lt;strong&gt;More Built-in Controls&lt;/strong&gt;&lt;/u&gt; &lt;p&gt;In Beta 1 only a few controls were included with the core Silverlight setup.  Most common controls (including Button, ListBox, Slider, etc) were shipped within separate assemblies that you had to bundle with your applications (which increased the app download size).  Beta 2 now installs 30+ of the most common controls as part of the core Silverlight 2 download.  This means that you can now build Silverlight 2 applications that use core controls that are as small as 3kb in size - making Silverlight application downloads small and startup time fast. &lt;p&gt;In addition to the core controls included with the base Silverlight 2 setup, we are also this week shipping additional higher-level controls that are implemented in separate assemblies that you can then reference and include with your applications.  This includes controls like DataGrid (more details on its new Beta2 features below), Calendar (now with multi-day selection and blackout date support in Beta2), and a ... &lt;p&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2008/06/06/silverlight-2-beta2-released.aspx" target="_blank"&gt;Continue at ScottGu's Blog&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Silverlight+2+Beta+2%2c+Expression+Blend+2.5+June+Preview+Released&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1975.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1975.entry</guid><pubDate>Sat, 07 Jun 2008 09:58:10 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1975/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1975.entry#comment</wfw:comment><dcterms:modified>2008-06-07T09:58:10Z</dcterms:modified></item><item><title>Microsoft issues first SP1 betas for VS 2008, .Net Framework 3.5</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1879.entry</link><description>&lt;p&gt;Microsoft is making available to testers a first beta release of Service Pack (SP) 1 for Visual Studio 2008 and the accompanying .Net Framework 3.5. &lt;p&gt;On May 12, Microsoft made available to any/all interested parties &lt;a href="http://msdn.microsoft.com/en-us/vstudio/cc533448.aspx"&gt;the first beta bits for both VS 2008 SP1 and .Net Framework 3.5 SP1&lt;/a&gt;. These can be downloaded from Microsoft’s Microsoft Developer Network site. Microsoft is warning testers that there are some compatibility issues involving the VS 2008/.Net Framework 3.5 SP1 betas and Expression Blend, the Silverlight 2 Beta 1 software development kit (SDK) and Silverlight Tools Beta 1 for VS 2008.&lt;a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx"&gt;&lt;/a&gt; &lt;p&gt;&lt;a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx"&gt;New to VS 2008 SP1&lt;/a&gt;, according to Microsoft, are “new features for targeting Windows, Office, and the Web. Developers building .NET-basedapplications will enjoy improved performance in the WPF (Windows Presentation Foundation) designer, new components for Visual Basic and Visual C++, as well as an MFC-based Office 2007 Ribbon. Web developers will see continued improvement in the client-side script tooling including JavaScript IntelliSense.” &lt;p&gt;And &lt;a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx"&gt;new to the .Net Framework 3.5 SP 1&lt;/a&gt; are “more controls, a streamlined setup, improved start-up performance, and powerful new graphics features for client development and rich data scaffolding, improved AJAX support, and other improvements for Web development.” &lt;p&gt;The .Net Framework 3.5 SP1 and VS 2008 SP1 also both add support for the ADO.Net Entity Framework. The framework service pack also adds support for ADO.Net Data Services, and the VS 2008 one adds support for the still-in-beta SQL Server 2008 release. &lt;p&gt;Microsoft has been building &lt;a href="http://blogs.zdnet.com/microsoft/?p=433"&gt;an entity data model framework around its ADO.Net technology&lt;/a&gt; that is designed to raise the level of abraction for database programmers. Originally, the ADO.Net Entity Framework was slated to be part of Visual Studio 2008. &lt;p&gt;&lt;a href="http://astoria.mslivelabs.com/"&gt;ADO.Net Services, the technology codenamed “Astoria,”&lt;/a&gt; is a RESTful interface for data. Astoria is designed to enable applications to expose data as a data service that can be consumed by Web clients within a corporate network and across the Internet. Microsoft released &lt;a href="http://blogs.zdnet.com/microsoft/?p=1033"&gt;a first test build of Astoria in December 2007&lt;/a&gt;, with officials saying the final release should be ready around mid-2008. &lt;p&gt;Microsoft officials declined to provide a target date for delivery of the final SP1s for Visual Studio 2008 and .Net Framework 3.5. &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://blogs.zdnet.com/microsoft/?p=1393" target="_blank"&gt;Mary Jo Foley&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+issues+first+SP1+betas+for+VS+2008%2c+.Net+Framework+3.5&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1879.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1879.entry</guid><pubDate>Tue, 13 May 2008 17:35:53 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1879/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1879.entry#comment</wfw:comment><dcterms:modified>2008-05-13T19:41:03Z</dcterms:modified></item><item><title>XNA Game Studio 3.0 CTP released, supports games development for Zune!</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1867.entry</link><description>&lt;p&gt;Today, we are delivering the first Community Technical Preview (CTP) of XNA Game Studio 3.0, giving you the ability to build games for the entire family of Zune media devices.  This feature gives you access to the majority of the XNA framework APIs while retaining a seamless sense of integration with the Zune media experience.  In addition, this release now requires either Visual Studio 2008 Standard Edition and higher (C# language support must be installed), or &lt;a href="http://www.microsoft.com/express/vcsharp/Default.aspx"&gt;Visual C# 2008 Express Edition&lt;/a&gt;.  &lt;p&gt;Keeping with Zune media experience, the XNA Game Studio 3.0 integration includes discoverability/access to user’s non-DRM music –  allowing you to customize background soundtracks or create real-time visualizations.  In addition, we’ve announced the ability to have multiple nearby Zunes wirelessly engage in an ad-hoc social gaming experience.  &lt;p&gt;A preview release of XNA Game Studio 3.0 is now available through the XNA Creators Club Online site (&lt;a href="http://creators.xna.com/"&gt;http://creators.xna.com&lt;/a&gt;), with a final release scheduled for the holiday 2008 season.  For those of you that prefer the shortest path to happiness, the direct link to the XNA Game Studio 3.0 CTP is &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=DF4AF56A-58A7-474C-BFD0-7CF8ED3036A3&amp;amp;displaylang=en"&gt;here&lt;/a&gt;.  &lt;p&gt;There’s three other important things we want you to know before you dig in:&lt;img alt=XNA align=right src="http://img140.imageshack.us/img140/3759/xna30ze2.png"&gt;  &lt;ul&gt; &lt;ul&gt; &lt;li&gt;Either Visual Studio 2008 Standard Edition and higher (C# language support must be installed), or &lt;a href="http://www.microsoft.com/express/vcsharp/Default.aspx"&gt;Visual C# 2008 Express Edition&lt;/a&gt; are required to install and run the XNA Game Studio 3.0 CTP.  Visual Studio 2005 SKUs are not supported with XNA Game Studio 3.0 and beyond.  However, you do not need to uninstall Visual Studio 2005 or XNA Game Studio 2.0, as those products will work side-by-side with Visual Studio 2008 and XNA Game Studio 3.0 CTP.  &lt;li&gt;This current CTP does not enable Xbox 360 game development.  Only Windows and Zune are supported in this CTP.  If you want to build and deploy games for the Xbox 360, you must continue using XNA Game Studio 2.0 for now.  &lt;li&gt;This CTP doesn't work in 64 bit yet.  We plan to support it before RTM.&lt;/ul&gt;&lt;/ul&gt; &lt;p&gt;We hope you have fun with this CTP, and we look forward to your feedback on this product!  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+XNA+Game+Studio+3.0+CTP+released%2c+supports+games+development+for+Zune!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1867.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1867.entry</guid><pubDate>Fri, 09 May 2008 12:44:23 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1867/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1867.entry#comment</wfw:comment><dcterms:modified>2008-05-09T12:49:31Z</dcterms:modified></item><item><title>Microsoft Expression Studio 2 Ships, Advancing Superior Developer and Designer Collaboration</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1758.entry</link><description>&lt;p&gt;Microsoft Corp. today delivered on its commitment to rapid innovation for the newest Microsoft platforms and latest Web technologies by announcing the release of Expression Studio 2. &lt;p&gt;The suite of professional design tools includes Expression Web 2, Expression Blend 2, Expression Design 2, Expression Media 2 and Expression Encoder 2 and works seamlessly with Visual Studio 2005 and Visual Studio 2008, solving the age-old designer and developer workflow challenge. The innovations in Extensible Application Markup Language (XAML), used by both Expression Studio and Visual Studio, allow for unprecedented designer-developer collaboration for the creation of both standards-based and Microsoft Silverlight-enhanced Web experiences as well as Windows Vista and .NET Framework 3.5 client applications. &lt;p align=center&gt;&lt;a href="http://www.microsoft.com/presspass/images/gallery/screenshots/DevTools/ProPhoto/xMediaVE_lg.jpg"&gt;&lt;img title="Geotagging with Virtual Earth: Take advantage of geotagged images with Virtual Earth integration." alt="Geotagging with Virtual Earth: Take advantage of geotagged images with Virtual Earth integration." src="http://www.microsoft.com/presspass/images/gallery/screenshots/DevTools/ProPhoto/xMediaVE_sm.jpg"&gt;&lt;/a&gt; &lt;p align=center&gt;&lt;b&gt;Geotagging with Virtual Earth: Take advantage of geotagged images with Virtual Earth integration.&lt;/b&gt; &lt;p align=center&gt;&lt;a href="http://www.microsoft.com/presspass/gallery/screenshots/developer.mspx"&gt;View more high-res screen shots.&lt;/a&gt; &lt;p&gt;In line with the team’s commitment to short release cycles, Expression Studio 2 is coming to market one year after the last release with major updates to each product. The products together contain more than 100 new features and introduce new Microsoft Silverlight functionality for creating stunning cross-browser, cross-platform Web experiences. Key features include the following: &lt;p&gt;• &lt;b&gt;Expression Web 2&lt;/b&gt; adds support for PHP and Adobe Photoshop import based on customer feedback. &lt;p&gt;• &lt;b&gt;Expression Blend 2,&lt;/b&gt; in addition to Silverlight support, adds vertex animation and an improved user interface with a new split design/XAML view.  &lt;p&gt;• &lt;b&gt;Expression Design 2&lt;/b&gt; adds improved exporting functionality including the ability to export slices.  &lt;p&gt;• &lt;b&gt;Expression Media 2&lt;/b&gt; is a robust digital asset management solution for photographers and other creative professionals. It adds support for the latest file formats including RAW, provides geotagging functionality, and is supported by Microsoft Office 2007 and Microsoft Office for Mac 2008.  &lt;p&gt;• &lt;b&gt;Expression Encoder 2&lt;/b&gt; is now a core offering of the suite. It allows creative and Web professionals to optimize almost any type of video content quickly for publishing on the Web, either in streaming video, rich-media advertising or other Web 2.0 projects.  &lt;p&gt;This groundbreaking release brings creative professionals fully into the application development process, accelerating time to market, minimizing resource use and improving return on investment for new projects. A full overview of features is available at &lt;a href="http://www.microsoft.com/expression/features"&gt;http://www.microsoft.com/expression/features&lt;/a&gt;.  &lt;p&gt;“The release of Expression Studio 2 flies in formation with the latest platform releases such as Silverlight and Windows Presentation Foundation and is a very exciting milestone for the industry,” said Eric Zocher, general manager for Expression Studio at Microsoft. “Great user experience is at the heart and soul of our Expression family of tools and is fundamental to enabling developers and designers to collaborate on building and delivering dynamic, connected applications that help customers achieve results.”&lt;img alt="Microsoft Expression Studio 2" align=right src="http://ccuepg.bay.livefilestore.com/y1pv-J_8eCN1ISmFNsoaN9QFAMiCHvw94dvaY67NNRycyzHOcqjnH1346fgaRKit6gT-hSkpTfz1ml1JcU0UhkyLw/Expression 2 Box.jpg"&gt;  &lt;p&gt;Millions of customers and partners such as Conchango PLC, 2ndFACTORY Co. Ltd, Design To Business (d2B), Infusion Development, and Pink and Yellow Media are beginning to experience the newfound power of Expression Studio and delivering rich, connected client and Web applications based on Windows Presentation Foundation, Microsoft Silverlight and Microsoft ASP.NET AJAX. &lt;p&gt;“The release of Expression Studio 2 signifies some major advancements in the way that designers and developers work together, which is enabling us to realize much more of our vision, and to do it more efficiently,” said Paul Dawson, head of experience at Conchango. “In addition, the increased connectedness between Visual Studio 2008 and Expression Studio is really beneficial. XAML is now where we live out that collaboration, which is giving us efficiencies in the design and development process of somewhere in the region of 20 percent to 30 percent, meaning our customers get much better branded user experiences, more reliable and robust code, in a shorter time frame and for a better cost.” &lt;p&gt;&lt;b&gt;Pricing and Availability&lt;/b&gt; &lt;p&gt;Microsoft also unveiled final product pricing and availability for the complete Expression 2 product family. Interested customers can purchase the entire studio from leading retailers such as Amazon.com and Best Buy starting in mid-May for $699 estimated retail price (ERP) (U.S.). In addition, all of the tools except Expression Design 2 are available as stand-alone products: Expression Blend 2 is available for $499 ERP (U.S.), Expression Web 2 is available for $299 ERP (U.S.), Expression Media 2 for $199 ERP (U.S), and Expression Encoder 2 for $199 ERP (U.S.). Microsoft also offers several upgrade options for existing Expression users and companion upgrades to Expression Web and Expression Media from a range of software titles by other vendors, including Adobe Systems Inc. All Expression products for English-speaking markets will include a getting-started video training courtesy of Total Training Inc. Comprehensive video training will be available for purchase separately at &lt;a href="http://www.totaltraining.com/expression2"&gt;http://www.totaltraining.com/expression2&lt;/a&gt;. &lt;p&gt;As announced at MIX08, Microsoft also is introducing the Microsoft Expression Professional Subscription in June 2008, which includes the full suite along with a number of other Microsoft programs* such as Visual Studio, Windows Vista and Microsoft Office to help users get started at an exceptional value of $999 ERP (U.S). More information about the subscription is available at &lt;a href="http://www.microsoft.com/expression/subscription"&gt;http://www.microsoft.com/expression/subscription&lt;/a&gt;. &lt;p&gt;Full product pricing and availability information is available at &lt;a href="http://www.microsoft.com/expression"&gt;http://www.microsoft.com/expression&lt;/a&gt;. &lt;p align=center&gt;&lt;img alt="Microsoft Expression Studio 2" src="http://ccuepg.bay.livefilestore.com/y1pv-J_8eCN1IQzdCanoi-WOUQVe-lFsV4lfYnOrls9vi_2364xSOCCZPfe6G6ZbYtwlb0wX0PJTTd7WR_gGHE7uQ/Microsoft Expression 2.PNG"&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;/em&gt;&lt;/strong&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Expression+Studio+2+Ships%2c+Advancing+Superior+Developer+and+Designer+Collaboration&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1758.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1758.entry</guid><pubDate>Fri, 02 May 2008 13:45:55 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1758/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1758.entry#comment</wfw:comment><dcterms:modified>2008-05-02T13:46:14Z</dcterms:modified></item><item><title>Microsoft Plans MSDN Revamp</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1719.entry</link><description>&lt;p&gt;Don't look now, but Microsoft is finally working to tune up its &lt;a href="http://msdn2.microsoft.com/en-us/default.aspx"&gt;Microsoft Developer Network (MSDN)&lt;/a&gt; site. The effort promises to resolve long-running frustrations developers have encountered working with the online library and resource.  &lt;p&gt;&lt;i&gt;Redmond Developer News&lt;/i&gt; has learned that Microsoft has assembled a task force to determine how it can improve MSDN, a site that aggregates much of Microsoft's technical content for developers. The task force, which spent much of this week in New York interviewing developers, made a stop last night at the monthly meeting of the &lt;a href="http://www.nycdotnetdev.com/"&gt;NYC .NET Developer's Group&lt;/a&gt; held in Microsoft's New York offices. The task force revealed its effort to a group of more than 100 people attending the meeting. &lt;p&gt;&amp;quot;There's great content there. It's very thorough, but from a practical standpoint, it doesn't really meet people's needs,&amp;quot; said Brian Hsi, a product manager involved in the effort, who made his pitch at the meeting. &amp;quot;It's kind of static. It's really a library at the end of the day.&amp;quot; &lt;p&gt;Hsi underscored that Microsoft was only at the information-gathering stage and offered no timetable for when changes will be implemented and how extensive the MSDN revamp may be. But he did say that his team intends to interview developers throughout the United States to determine what they like and dislike about the site.  &lt;p&gt;One thing Hsi did indicate is that MSDN will evolve from the more &amp;quot;static&amp;quot; resource that it now is to a more community-focused effort.  &lt;p&gt;&amp;quot;Historically, we've been pretty much a content-driven site,&amp;quot; Hsi said. &amp;quot;We're really talking about moving toward broader involvement from community members. It's not so much that there's people that offer content, it's [that] everyone's in it together.&amp;quot; &lt;p&gt;&lt;b&gt;Search and Complain&lt;/b&gt;&lt;br&gt;Indeed, Hsi was rather blunt in his critique of MSDN. &amp;quot;It's often tough to find out if something is accurate or relevant,&amp;quot; he told the group. &amp;quot;People just want answers.&amp;quot;  &lt;p&gt;The biggest criticism of MSDN is the difficulty of finding content spread across the various Microsoft services, including CodePlex, CodeGallery, Channel 9 and the various forums, libraries and blogs. It's a situation that motivated several developers at the meeting to express frustration with the challenge of finding information on MSDN. &lt;p&gt;&amp;quot;It is kind of ironic that the internal search never finds anything so I have to go to Google to find things,&amp;quot; said James Curran, a senior programmer for barnesandnoble.com, in an interview following the meeting. &amp;quot;I am really looking forward to an improvement because there's a lot of good information that's tough to find.&amp;quot; &lt;p&gt;But even those using Google and other search engines can't find terms that use, say, the &amp;quot;#&amp;quot; sign or a URL.  &lt;p&gt;Another attendee lamented that when Microsoft launched MSDN in 1994, the site promised that if a developer didn't receive an answer to a question posted on a newsgroup or forum within three days, Microsoft would guarantee an answer. &amp;quot;We can't get that anymore,&amp;quot; the attendee said.  &lt;p&gt;Hsi acknowledged that search has been a key bugaboo with MSDN, saying the company has conducted some pilots using its own Live Search interface to MSDN by having editors tie together content from CodePlex and other sites within MSDN.  &lt;p&gt;&amp;quot;There's definitely improvements along the way,&amp;quot; Hsi said. &amp;quot;I know it's not perfect, I am not here to tell you that it is, but we're making some progress.&amp;quot; &lt;p&gt;The moves come about a year after Microsoft introduced improvements to navigation on MSDN's TechNet. Among the key improvements was the implementation of tabbed, contextual navigation. By clicking on a tab, a user is directed to a site focused on a specific technology or product, a process that was designed to minimize the amount of clicking and result in fewer redundant links.  &lt;p&gt;MSDN also has more consistent navigation, such as &amp;quot;download&amp;quot; tabs in the same location, &lt;a href="http://msdn2.microsoft.com/en-us/subscriptions/bb457197.aspx"&gt;according to MSDN&lt;/a&gt;. &lt;p&gt;&lt;strong&gt;Via:&lt;/strong&gt; &lt;a href="http://entmag.com/news/rss.asp?editorialsid=9773#1" target="_blank"&gt;ENTNEWS&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Plans+MSDN+Revamp&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1719.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1719.entry</guid><pubDate>Sun, 20 Apr 2008 17:41:46 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1719/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1719.entry#comment</wfw:comment><dcterms:modified>2008-04-20T17:50:44Z</dcterms:modified></item><item><title>Microsoft To Release Silverlight 2 In Late Summer</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1681.entry</link><description>&lt;p&gt;Microsoft has been working like gangbusters to create the perception that its cross-platform multimedia runtime Silverlight is a viable alternative to Adobe's Flash, and the vendor will soon put updated tools in the hands of Silverlight developers.  &lt;p&gt;In &lt;a href="http://blogs.msdn.com/ashish/archive/2008/04/03/silverlight-roadmap-questions.aspx" target="_blank"&gt;a Thursday blog post&lt;/a&gt;, Microsoft developer Ashish Thapliyal said Microsoft is &amp;quot;targeting late Summer&amp;quot; for its release of Silverlight 2.0, which is currently in its first beta release.  &lt;p&gt;Silverlight 2.0 supports VC-1, WMV, MP3 and WMA content, but Microsoft has no plans to support the Flash video (.flv), used by Youtube and many other Websites, said Thapliyal. Microsoft's rationale here is to avoid paying licensing fees and to keep the Silverlight download file size as small as possible, he added.  &lt;p&gt;&amp;quot;Silverlight isn't designed with an extensible codec model in mind, so there is no date/version announced for this,&amp;quot; wrote Thapliyal.  &lt;p&gt;A second Silverlight 2.0 beta is due in May, and this version will be very similar to the final release, according to Thapliyal. He said no details are available about the roadmap for Silverlight for mobile, or Silverlight v.Next, also known as Silverlight 3.  &lt;p&gt;Silverlight 1.0, which Microsoft launched last September, was designed to facilitate rich media scenarios in a browser, and supported a JavaScript/AJAX programming model. Silverlight 2.0 will focus on enabling development of Rich Internet Applications and will go up against Adobe Integrated Runtime (AIR), a multimedia runtime that lets application designers blend online and client-side functionality.  &lt;p&gt;Scott Stanfield, CEO of Vertigo Software, Richmond, Calif., whose firm designed the corporate Website for the &lt;a href="http://memo.hardrock.com" target="_blank"&gt;Hard Rock Cafe&lt;/a&gt; using Silverlight 2 Beta 1, says the project proceeded smoothly and without downtime. &lt;img alt="Microsoft Silverlight" align=right src="http://img105.imageshack.us/img105/969/microsoftsilverlighttq0.png"&gt; &lt;p&gt;&amp;quot;Beta 1 is solid, so we're hoping that Microsoft adds some more cool features in the coming months before releasing 2.0,&amp;quot; Stanfield said.  &lt;p&gt;According to Thapliyal, Silverlight is currently being downloaded 1.5 million times per day, and more than 60 organizations have joined Microsoft's Silverlight Partner Initiative since Silverlight 1.0 was launched last September. Thapliyal also took a swipe at Adobe's oft-repeated claims that &lt;a href="http://www.crn.com/encyclopedia/defineterm.jhtml?term=Flash&amp;amp;x=&amp;amp;y="&gt;Flash&lt;/a&gt; is installed on 90 percent of the world's Internet-connected PCs, noting that percentage based claims are &amp;quot;hard to verify&amp;quot;.  &lt;p&gt;Microsoft last August quietly launched an experimental visual search service called Tafiti.com, which highlights the graphical capabilities of Silverlight in the context of Live Search and makes searching the Web a more visual experience.  &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://www.crn.com/software/207001928?cid=CRNFeed" target="_blank"&gt;Channel Web&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+To+Release+Silverlight+2+In+Late+Summer&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1681.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1681.entry</guid><pubDate>Mon, 07 Apr 2008 12:58:34 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1681/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1681.entry#comment</wfw:comment><dcterms:modified>2008-04-07T13:00:41Z</dcterms:modified></item><item><title>Silverlight Roadmap questions</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1675.entry</link><description>&lt;p&gt;&lt;b&gt;Silverlight&lt;/b&gt; is about 7 month old kid but it is already making such a big buzz. One of my colleague &lt;a href="http://blogs.msdn.com/rahul"&gt;Rahul&lt;/a&gt; did excellent job in terms of putting up a FAQ regarding the &lt;b&gt;roadmap&lt;/b&gt; &lt;p&gt;1. When exactly will &lt;b&gt;Silverlight&lt;/b&gt; support all the codecs that a standard Windows Media Player support? How about supporting .flv since most of the video on internet currently is using this format? &lt;p&gt;&lt;b&gt;Silverlight&lt;/b&gt; isn’t designed with an extensible codec model in mind, so there is no date/version announced for this.  &lt;p&gt;&lt;b&gt;Silverlight&lt;/b&gt; supports playing VC-1, WMV, MP3 and WMA content.  It doesn't support arbitrary codecs since those get complicated from a licensing perspective (Microsoft needs to pay the owners of those formats royalties), and they also dramatically increase the size of the download (which we want to keep small to enable really easy deployment). &lt;p&gt;Currently the alternative to this is Expression Media Encoder. It will have support for taking different formats like flv and converting them into &lt;b&gt;Silverlight&lt;/b&gt; supported formats.  &lt;p&gt;2. Which streaming server protocols does &lt;b&gt;Silverlight&lt;/b&gt; support currently and which will be supported in near future? &lt;p&gt;MMS now and future.&lt;br&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/cc189080(VS.95).aspx#anchor_mediaformats_streaming"&gt;http://msdn2.microsoft.com/en-us/library/cc189080(VS.95).aspx#anchor_mediaformats_streaming&lt;/a&gt; &lt;p&gt;3.  Why the support for displaying a .gif image is is missing? When it will be added? &lt;br&gt;We don’t want to take the hit for another codec. It may only be a little bit of download time—but our mandate is small and fast and every little bit counts. We are also hesitant to support .gif because it implies support for animated .gif, which we decided would have to be integrated into our animation scheme somehow—and that will be a lot of work.  &lt;p&gt;Looking from Flash perspective, Flash does not support .gif either. However, as of present, this is something being evaluated, but no date has been announced &lt;p&gt;4. Is the size of &lt;b&gt;Silverlight&lt;/b&gt; 2 Beta plug-in expected to increase by the time of final release? Which namespaces Microsoft is planning to add in final release. &lt;p&gt;It may increase a little, but the size is not known at this time. Beta 2 will contain the full set of namespaces. To see the list of namespaces in Beta2 you will have to wait. &lt;p&gt;5. What would be the full and final set of controls that are expected to be included with &lt;b&gt;Silverlight&lt;/b&gt; 2 - final release? &lt;p&gt;The controls in Beta 2 will be the full set in the final release. You will be able to see that once Beta 2 comes out. &lt;p&gt;6. When is &lt;b&gt;Silverlight&lt;/b&gt; 2 - final version expected to be released? &lt;br&gt;We are targeting late Summer &lt;p&gt;Here is a rough timeline:&lt;br&gt;&lt;b&gt;Silverlight&lt;/b&gt; 2.0 Beta 1 (Q1CY08 with limited (non commercial) Go-Live) &lt;br&gt;&lt;b&gt;Silverlight&lt;/b&gt; 2.0 Beta 2 (Q2CY08 with Go-Live)&lt;br&gt;&lt;b&gt;Silverlight&lt;/b&gt; 2.0 RTM (Summer 2008) – Exact timing TBD &lt;p&gt;&lt;b&gt;Silverlight&lt;/b&gt; v.next – We are working on a v.Next plan and have nothing to announce at this time &lt;p&gt;&lt;b&gt;Silverlight&lt;/b&gt; for mobile – No date available &lt;p&gt;7. Is there going to be a big difference in terms of features/component model etc. in &lt;b&gt;Silverlight&lt;/b&gt; 2 beta and final release (just like it is the case with 1.1 Alpha and 2.0 Beta)?&lt;br&gt;There will be breaking changes between Beta 1 and Beta2 of &lt;b&gt;Silverlight&lt;/b&gt; 2 but the changes will not be drastic between Beta2 and Final Release. You can expect almost similar feature set as with Beta2 which is expected to come out in the Month of May 2008.&lt;br&gt;Also, if you develop your websites using 1.0 it will be compatible when 2.0 comes out. Then you simply have to update your skill set capabilities.&lt;br&gt;&lt;b&gt;Silverlight&lt;/b&gt; 1.0 is shipping separately so we can provide key customers the stability and support they need to begin delivering fast, cost-effective delivery of high-quality media experiences to all major browsers running on Mac OS or Windows and soon Linux. There is only one &lt;b&gt;Silverlight&lt;/b&gt; so all the capabilities of 1.0 will be unified in the 2.0 release. &lt;p&gt;8. Will &lt;b&gt;Silverlight&lt;/b&gt; 2 final release offer some local Caching API (with automatic expiration, notifications etc.) just like System.Web.Cache API in ASP.Net 2.0/3.5?&lt;br&gt;It’s already in the Beta and called ‘Isolated Storage’ &lt;p&gt;Isolated storage can solve some of the requirements of caching APIs (but without the notification), the browser cache can handle others (again, without notification).  &lt;p&gt;9. In order to call a WCF Service from &lt;b&gt;Silverlight&lt;/b&gt; 2 Beta, you have to use “basicHttpBinding” currently. Will &lt;b&gt;Silverlight&lt;/b&gt; support additional bindings in near future like MSMQBinding and others? &lt;p&gt;We have not planned for this feature as of yet. So I would personally say ‘probably not’. However this is an interesting feedback  &lt;p&gt;10. Does Microsoft have any authentic estimates of &lt;b&gt;Silverlight&lt;/b&gt; usage by the end users? Adobe claims 90% coverage of Flash, We know &lt;b&gt;Silverlight&lt;/b&gt; is new but would like to know the current coverage, estimated coverage in next 1 year and Microsoft’s plans to increase its coverage, to move forward with our development efforts with even more confidence J &lt;p&gt;We’ve announced that we’re at about 1.5 million downloads per day at the moment. The problem with putting out some % values like Adobe do is that it is hard to be accurate and hard to verify.&lt;img alt="Microsoft Silverlight" align=right src="http://img105.imageshack.us/img105/969/microsoftsilverlighttq0.png"&gt; &lt;p&gt;Since the launch of &lt;b&gt;Silverlight&lt;/b&gt; 1.0, the number of partners participating in the Microsoft &lt;b&gt;Silverlight&lt;/b&gt; Partner Initiative has already grown to more than 60 organizations, and new customers have delivered &lt;b&gt;Silverlight&lt;/b&gt; applications. Most recently UVNTV.com and NBA.com have committed to going live on &lt;b&gt;Silverlight&lt;/b&gt;. We are very excited about success of &lt;b&gt;Silverlight&lt;/b&gt; 1.0, download numbers continue to be in line with expectations to date. &lt;p&gt;You can get an idea about the future of &lt;b&gt;Silverlight&lt;/b&gt; with the amount of efforts that are being put on this technology. Have a look at the partner initiatives that would attract hardware/software developers, solution providers etc.&lt;br&gt;&lt;a href="http://www.microsoft.com/silverlight/partners/default.aspx"&gt;http://www.microsoft.com/&lt;b&gt;silverlight&lt;/b&gt;/partners/default.aspx&lt;/a&gt; &lt;p&gt;I would recommend you to visit the news and announcements section frequently to remain updated about technology.&lt;br&gt;&lt;a href="http://www.microsoft.com/silverlight/news/default.aspx"&gt;http://www.microsoft.com/&lt;b&gt;silverlight&lt;/b&gt;/news/default.aspx&lt;/a&gt;&lt;br&gt;&lt;a href="http://silverlight.net/Community"&gt;http://&lt;b&gt;silverlight&lt;/b&gt;.net/Community&lt;/a&gt; &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://blogs.msdn.com/ashish/archive/2008/04/03/silverlight-roadmap-questions.aspx" target="_blank"&gt;MSDN Blogs&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Silverlight+Roadmap+questions&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1675.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1675.entry</guid><pubDate>Sat, 05 Apr 2008 09:57:16 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1675/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1675.entry#comment</wfw:comment><dcterms:modified>2008-04-05T10:05:56Z</dcterms:modified></item><item><title>More on Microsoft's database-in-the-cloud service (SQL Server Data Services)</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1534.entry</link><description>&lt;p&gt; &lt;p&gt;LAS VEGAS--While Internet Explorer 8 demos, Silverlight progress and a Monkey Boy reprise from Steve Ballmer captured much of the attention at Mix 08--it was a database announcement that could be the sleeper announcement of the show.  &lt;p&gt;What Microsoft announced was a database-in-the-cloud service where Web developers can store their data. Those attending the Mix &lt;img height=378 alt="Dave Campbell - Microsoft SQL Server division" src="http://i.i.com.com/cnwk.1d/i/bto/20080310/Campbell_print_270x378.jpg" width=270 align=right&gt;show here were able to sign up for a beta test that is set to begin in three or four weeks, with a final version aimed to be launched by the end of the year, according to Dave Campbell, a technical fellow in Microsoft's SQL Server division.  &lt;p&gt;&amp;quot;We're taking SQL Server we're pulling pieces of it apart and we're putting it back together,&amp;quot; Campbell said in an interview. One of the challenges is taking software designed to run highly reliable servers and storage and turning it into a commodity service.  &lt;p&gt;But, Campbell said, that's also where the opportunity lies. &amp;quot;In this world, dumb and fast rules.&amp;quot;  &lt;p&gt;&amp;quot;If you give up a tiny bit in terms of the degree of consistency in the architecture, you can get tremendous resiliency and scale, but you want to retain enterprise-class quality around data service,&amp;quot; he explained. Factoring data into classes of data or tiers is one way to improve the class of service using commodity gear, he said.  &lt;p&gt;What Microsoft is doing in this case with its database is also the kind of thing it makes sense to imagine the company doing with a variety of &amp;quot;building block&amp;quot; services.  &lt;p&gt;&amp;quot;SQL Data Services is a building block for Microsoft's longer term vision of a services fabric for developing and deploying applications,&amp;quot; Campbell said. &amp;quot;Imagine at some point a version of Visual Studio with a services palette in the toolbox and wiring up and composing services.&amp;quot;  &lt;p&gt;Illuminata analyst Gordon Haff said that it's important for Microsoft to be a player in this area.  &lt;p&gt;&amp;quot;A lot of computing and storage is going to be moving online,&amp;quot; he said. &amp;quot;For them not to get into this game would be suicidal at some level.&amp;quot;  &lt;p&gt;Campbell downplayed the notion that Microsoft was competing with Amazon.com's S3 service.  &lt;p&gt;Haff said that there are some differences, since Amazon targets largely unstructured data and Microsoft is aimed more at structured and semi-structured data, but said it's not like the two don't overlap.  &lt;p&gt;&amp;quot;They are targeting a somewhat different market, but everyone competes at some level,&amp;quot; he said.  &lt;p&gt;Campbell wouldn't get into how Microsoft would price the service, but said it some type of usage model that takes into account both the amount of data stored in the cloud as well as the bandwidth used in transferring information.  &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://www.news.com/8301-13860_3-9888688-56.html?part=rss&amp;amp;subj=news&amp;amp;tag=2547-1_3-0-5" target="_blank"&gt;C|NET NEWS&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+More+on+Microsoft's+database-in-the-cloud+service+(SQL+Server+Data+Services)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1534.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1534.entry</guid><pubDate>Tue, 11 Mar 2008 16:33:39 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1534/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1534.entry#comment</wfw:comment><dcterms:modified>2008-03-11T16:39:07Z</dcterms:modified></item><item><title>Microsoft Expression Studio 2 Beta now available for download!</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1512.entry</link><description>&lt;p&gt;Whether creating standards-based Web user interfaces by using Microsoft ASP.NET, building cross-platform rich interactive applications with Silverlight, or creating ultimate Windows Vista experiences with Windows Presentation Foundation (WPF), Expression tools enable designers to fully apply their creativity while collaborating with developers using Microsoft Visual Studio. Expression Studio includes the following products:  &lt;p&gt;  &lt;ul&gt; &lt;li&gt;&lt;a href="http://www.microsoft.com/Expression/products/overview.aspx?key=web"&gt;Expression Web&lt;/a&gt; for building standards-based Web sites.  &lt;li&gt;&lt;a href="http://www.microsoft.com/Expression/products/overview.aspx?key=design"&gt;Expression Design&lt;/a&gt; for professional illustration and graphic design.  &lt;li&gt;&lt;a href="http://www.microsoft.com/Expression/products/overview.aspx?key=blend"&gt;Expression Blend&lt;/a&gt; for creating engaging Web-connected experiences for Microsoft Windows. This special preview version is compatible with creating content for Silverlight 1.0 Release Candidate and Silverlight 1.1 Alpha.  &lt;li&gt;&lt;a href="http://www.microsoft.com/Expression/products/download.aspx?key=blend2dot5"&gt;Expression Blend 2.5 March 2008 Preview&lt;/a&gt;&lt;br&gt;Build content that targets Silverlight 2 Beta 1 with the Expression Blend 2.5 March 2008 Preview.  &lt;li&gt;&lt;a href="http://www.microsoft.com/Expression/products/overview.aspx?key=media"&gt;Expression Media&lt;/a&gt; for assets management as well as media encoding. This version also includes the &lt;a href="http://go.microsoft.com/fwlink/?LinkID=89148&amp;amp;clcid=0x409"&gt;Expression Encoder&lt;/a&gt; tool for transcoding video content.&lt;/ul&gt; &lt;p&gt;&lt;img alt="Microsoft Expression Studio 2 Beta" src="http://img259.imageshack.us/img259/2329/expressionstudio2betanw5.png"&gt; &lt;p&gt;&lt;a href="http://www.microsoft.com/expression/products/download.aspx?key=studio2beta" target="_blank"&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Download Expression Studio 2 Beta&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Expression+Studio+2+Beta+now+available+for+download!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1512.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1512.entry</guid><pubDate>Thu, 06 Mar 2008 03:30:49 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1512/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1512.entry#comment</wfw:comment><dcterms:modified>2008-03-06T03:32:03Z</dcterms:modified></item><item><title>First Look at Silverlight 2</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1466.entry</link><description>&lt;p&gt;Last September &lt;a href="http://weblogs.asp.net/scottgu/archive/2007/09/04/silverlight-1-0-released-and-silverlight-for-linux-announced.aspx"&gt;we shipped Silverlight 1.0 for Mac and Windows&lt;/a&gt;, and announced our plans to deliver Silverlight on Linux.  Silverlight 1.0 focused on enabling rich media scenarios in a browser, and supports a JavaScript/AJAX programming model. &lt;p&gt;We are shortly going to release the first public beta of Silverlight 2, which will be a major update of Silverlight that focuses on enabling Rich Internet Application (RIA) development.  This is the first of several blog posts I'll be doing over the weeks and months ahead that talk in more depth about it. &lt;h5&gt;&lt;u&gt;Cross Platform / Cross Browser .NET Development&lt;/u&gt;&lt;/h5&gt; &lt;p&gt;Silverlight 2 includes a cross-platform, cross-browser version of the .NET Framework, and enables a rich .NET development platform that runs in the browser.  Developers can write Silverlight applications using any .NET language (including VB, C#, JavaScript, IronPython and IronRuby).  We will ship Visual Studio 2008 and Expression Studio tool support that enables great developer / designer workflow and integration when building Silverlight applications. &lt;p&gt;This upcoming Beta1 release of Silverlight 2 provides a rich set of features for RIA application development.  These include: &lt;ul&gt; &lt;li&gt;&lt;u&gt;WPF UI Framework&lt;/u&gt;: Silverlight 2 includes a rich WPF-based UI framework that makes building rich Web applications much easier.  In includes a powerful graphics and animation engine, as well as rich support for higher-level UI capabilities like controls, layout management, data-binding, styles, and template skinning.  The WPF UI Framework in Silverlight is a compatible subset of the WPF UI Framework features in the full .NET Framework, and enables developers to re-use skills, controls, code and content to build both rich cross browser web applications, as well as rich desktop Windows applications. &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;&lt;u&gt;Rich Controls&lt;/u&gt;: Silverlight 2 includes a rich set of built-in controls that developers and designers can use to quickly build applications.  This upcoming Beta1 release includes core form controls (TextBox, CheckBox, RadioButton, etc), built-in layout management panels (StackPanel, Grid, Panel, etc), common functionality controls (Slider, ScrollViewer, Calendar, DatePicker, etc), and data manipulation controls (DataGrid, ListBox, etc).  The built-in controls support a rich control templating model, which enables developers and designers to collaborate together to build highly polished solutions. &lt;/ul&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt;&lt;u&gt;Rich Networking Support&lt;/u&gt;: Silverlight 2 includes rich networking support.  It includes out of the box support for calling REST, WS*/SOAP, POX, RSS, and standard HTTP services.  It supports cross domain network access (enabling Silverlight clients to directly access resources and data from resources on the web).  Beta1 also includes built-in sockets networking support.&lt;/ul&gt; &lt;ul&gt; &lt;li&gt;&lt;u&gt;Rich Base Class Library&lt;/u&gt;: Silverlight 2 includes a rich .NET base class library of functionality (collections, IO, generics, threading, globalization, XML, local storage, etc).  It includes rich APIs that enable HTML DOM/JavaScript integration with .NET code.  It also includes LINQ and LINQ to XML library support (enabling easy transformation and querying of data), as well as local data caching and storage support.  The .NET APIs in Silverlight are a compatible subset of the full .NET Framework. &lt;/ul&gt; &lt;p&gt;Silverlight 2 does not require the .NET Framework to be installed on a computer in order to run.  The Silverlight setup download includes everything necessary to enable all the above features (and more we'll be talking about shortly) on a vanilla Mac OSX or Windows machine.  &lt;p&gt;The Beta1 release of Silverlight 2 is 4.3MB in size, and takes 4-10 seconds to install on a machine that doesn't already have it.  Once Silverlight 2 is installed you can browse the Web and automatically run rich Silverlight applications within your browser of choice (IE, FireFox, Safari, etc). &lt;h5&gt;&lt;u&gt;Silverlight 2 Tutorials: Building A Simple Digg Client&lt;/u&gt;&lt;/h5&gt; &lt;p&gt;To help people come up to speed with Silverlight 2, I wrote a Silverlight application and put together a series of step by step tutorials that drill into and explain the different programming concepts behind it (controls, layout management, networking, data-binding, styles, user controls, templates, etc). I also added a tutorial post that demonstrates how to migrate the application outside of the browser and make it a desktop application using WPF and the full .NET Framework.  &lt;p&gt;Below are the pointers to the 8 tutorials I've put together: &lt;ul&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-1-creating-quot-hello-world-quot-with-silverlight-2-and-vs-2008.aspx"&gt;Part 1: Creating &amp;quot;Hello World&amp;quot; with Silverlight 2 and VS 2008&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-2-using-layout-management.aspx"&gt;Part 2: Using Layout Management&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-3-using-networking-to-retrieve-data-and-populate-a-datagrid.aspx"&gt;Part 3: Using Networking to Retrieve Data and Populate a DataGrid&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-4-using-style-elements-to-better-encapsulate-look-and-feel.aspx"&gt;Part 4: Using Style Elements to Better Encapsulate Look and Feel&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-5-using-the-listbox-and-databinding-to-display-list-data.aspx"&gt;Part 5: Using the ListBox and DataBinding to Display List Data&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-6-using-user-controls-to-implement-master-detail-scenarios.aspx"&gt;Part 6: Using User Controls to Implement Master/Details Scenarios&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-7-using-control-templates-to-customize-a-control-s-look-and-feel.aspx"&gt;Part 7: Using Templates to Customize Control Look and Feel&lt;/a&gt; &lt;li&gt;&lt;a href="http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-8-creating-a-digg-desktop-application-using-wpf.aspx"&gt;Part 8: Creating a Digg Desktop Version of our Application using WPF&lt;/a&gt;&lt;/ul&gt; &lt;p&gt;The application I've built the tutorials around is a simple search front end to the popular &lt;a href="http://www.digg.com"&gt;Digg.com&lt;/a&gt; site, and allows users to type in search topics and browse Digg stories that match them. &lt;p&gt;All of the UI in the application is built using Silverlight's WPF framework.  The application uses the Silverlight networking stack and cross-domain access support to query the &lt;a href="http://apidoc.digg.com/"&gt;Digg REST API&lt;/a&gt; directly, and uses LINQ and LINQ to XML to query/transform the returned data into DiggStory objects that I databind the UI against: &lt;p align=center&gt;&lt;img src="http://silverlight1blogpost.s3.amazonaws.com/app1.png"&gt; &lt;p&gt;The application supports a master/details data interaction model that allows users to select stories from the search list and quickly drill into more details about them.  A user can jump to the Digg article directly from the details form, or close it and pick another story to drill into: &lt;p align=center&gt;&lt;img src="http://silverlight1blogpost.s3.amazonaws.com/app2.png"&gt; &lt;p&gt;The entire application is implemented in about 35 lines of C# code and 75 lines of XAML page/user-control markup.  It only uses controls and libraries built-into Silverlight. &lt;p&gt;If you have used WPF before the UI concepts I discuss in the tutorial series will all be very familiar.  If you haven't used WPF before, the tutorials should provide a good overview of the fundamental programming concepts in it, and hopefully provide you with the basic knowledge necessary to start building Silverlight 2 applications with VS 2008 when Beta1 comes out. &lt;p&gt;I'll post details on my blog once Beta1 is available for download.  I'll also upload the final Digg application to my site (along with the code + project file to open and edit it in VS 2008) once Beta1 has shipped. &lt;p&gt; &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://weblogs.asp.net/scottgu/archive/2008/02/22/first-look-at-silverlight-2.aspx" target="_blank"&gt;ScottGu's Blog&lt;/a&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+First+Look+at+Silverlight+2&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1466.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1466.entry</guid><pubDate>Mon, 25 Feb 2008 01:32:54 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1466/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1466.entry#comment</wfw:comment><dcterms:modified>2008-02-25T01:33:48Z</dcterms:modified></item><item><title>Microsoft Gives Students Access to Technical Software at No Charge to Inspire Success and Make a Difference</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1434.entry</link><description>&lt;p&gt;Microsoft Corp. Chairman Bill Gates today will unveil a software giveaway that will ultimately provide millions of college and high school students around the world with access to the latest Microsoft developer and designer tools at no charge to unlock their creative potential and set them on the path to academic and career success.  &lt;p align=center&gt;&lt;a href="http://www.microsoft.com/winme/0802/32330/BillG_Stanford_MBR.asx" target="_blank"&gt;View a Webcast of Microsoft Chairman Bill Gates talking to students at Stanford University about DreamSpark, Feb. 19, 2008.&lt;/a&gt;  &lt;p&gt;The Microsoft DreamSpark student program (&lt;a href="http://channel8.msdn.com/"&gt;http://channel8.msdn.com&lt;/a&gt;) makes available, at no charge, a broad range of development and design software for download. The program is now available to more than 35 million college students in Belgium, China, Finland, France, Germany, Spain, Sweden, Switzerland, the U.K. and the U.S. Broad global coverage, as well as an expansion of the program to high school students around the world, potentially reaching up to 1 billion students worldwide, will continue throughout the next year. Gates will share details with students and faculty at Stanford University as part of a U.S. and Canada college tour that kicks off today.  &lt;p&gt;“We want to do everything we can to equip a new generation of technology leaders with the knowledge and tools they need to harness the magic of software to improve lives, solve problems and catalyze economic growth,” Gates said. “Microsoft DreamSpark provides professional-level tools that we hope will inspire students to explore the power of software and encourage them to forge the next wave of software-driven breakthroughs.”  &lt;p&gt;&lt;b&gt;Priming the Talent Pipeline&lt;/b&gt;  &lt;p&gt;Microsoft DreamSpark is available to all students whose studies touch on technology, design, math, science and engineering. Students of today are more technical in their everyday lives than ever — representing both their personal interests and what is expected of them when they arrive in the workplace for the first time. The following cutting-edge software will be available to empower students to unlock their ingenuity by building critical skills:  &lt;p&gt;1. &lt;b&gt;Microsoft developer tools. &lt;/b&gt;Visual Studio is the Swiss Army knife of computer programming. These professional-grade products provide a security-enhanced and reliable environment, enabling students to program everything from a cell phone to a robot or to create their own Web page. Students will also be able to invent compelling new gaming content and make their dream game a reality by porting their creations to their Xbox 360 console.  &lt;p&gt;2. Visual Studio 2005 Professional Edition  &lt;p&gt;3. Visual Studio 2008 Professional Edition  &lt;p&gt;4. XNA Game Studio 2.0  &lt;p&gt;5. 12-month free Academic membership in the XNA Creators Club  &lt;p&gt;6. &lt;b&gt;Microsoft designer tools. &lt;/b&gt;This ultra-versatile suite of tools will enable students to vividly bring their creative visions to life in vibrant new Web site designs and more effective digital content, including animation, imagery and photography.  &lt;p&gt;7. Expression Studio, including  &lt;blockquote&gt; &lt;p&gt;•Expression Web&lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;•Expression Blend&lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;•Expression Design&lt;/blockquote&gt; &lt;blockquote&gt; &lt;p&gt;•Expression Media&lt;/blockquote&gt; &lt;p&gt;8. &lt;b&gt;Microsoft platform resources. &lt;/b&gt;The foundation for development and design platforms, these products deliver a security-enhanced, reliable and manageable environment for students to more quickly turn ideas into reality.  &lt;p&gt;9. SQL Server 2005 Developer Edition  &lt;p&gt;10. Windows Server, Standard Edition  &lt;p&gt;“The opportunity, as a student, to use the same professional tools that I can expect to use after I graduate gives me a real head start in my career,” said Nathan Murith, a computer science student at the University of Geneva in Switzerland, who tested the service in a pilot before today’s launch. “I’m already getting more out of my studies, applying my learning to try out new ideas, and gaining new insights into careers in software design and development.”  &lt;p align=center&gt;&lt;img alt="Microsoft Dreamspark" src="http://ccuepg.bay.livefilestore.com/y1pv-J_8eCN1ITZ5_qu183AqW_aOdWXeWSHTHo8gXCeAI5XyV7ZQ3wPZaZhnmazInNORdMlOUUPWBdTUL54XW75pw/Dreamspark.PNG"&gt;  &lt;p&gt;&lt;b&gt;Demand for Software Expertise in All Marketplaces and Economies&lt;/b&gt;  &lt;p&gt;Technological innovation is a critical economic growth engine and is expected to generate 7.1 million new jobs in the global economy over the next four years, according to a study of the economic impact of IT across 82 countries and regions carried out in 2007 by IDC and commissioned by Microsoft. The same study found that the IT employment base will grow to 42.5 million people, with the sharpest growth occurring in developing nations.  &lt;p&gt;“Technology is the ignition key for job growth, economic development and creating sustainable solutions to global problems,” said John Gantz, chief research officer at IDC. “The emerging economies are forecast to drive over 25 percent of the new IT jobs over the next four years. These jobs will be driven by an evolving, highly skilled labor force. Tech skills are key to employability.”  &lt;p&gt;&lt;b&gt;Availability&lt;/b&gt;  &lt;p&gt;In the next six months, the company expects to expand Microsoft DreamSpark to college students in Australia, Czech Republic, Estonia, Japan, Lithuania, Latvia, Slovakia and many more countries in the Americas, Asia and Europe, as well as to high school students by the third quarter of 2008. Students should check &lt;a href="http://channel8.msdn.com/"&gt;http://channel8.msdn.com&lt;/a&gt; for regularly posted updates to see when Microsoft DreamSpark will be available to them.  &lt;p&gt;Microsoft is working with academic institutions, governments and student organizations around the world, such as the International Student Identity Card (ISIC) Association, to ensure the necessary local student identity-verification technology infrastructure exists to bring Microsoft DreamSpark to all students in markets around the world. The program will be expanded as fast as this community-based effort with government and organizations can be connected at a local level in new countries.  &lt;p&gt;Founded in 1975, Microsoft (Nasdaq “MSFT”) is the worldwide leader in software, services and solutions that help people and businesses realize their full potential.  &lt;p&gt;&lt;i&gt;Note to editors:&lt;/i&gt; If you are interested in viewing additional information on Microsoft, please visit the Microsoft Web page at &lt;a href="http://www.microsoft.com/presspass"&gt;http://www.microsoft.com/presspass&lt;/a&gt; on Microsoft’s corporate information pages. Web links, telephone numbers and titles were correct at time of publication, but may since have changed. For additional assistance, journalists and analysts may contact Microsoft’s Rapid Response Team or other appropriate contacts listed at &lt;a href="http://www.microsoft.com/presspass/contactpr.mspx"&gt;http://www.microsoft.com/presspass/contactpr.mspx&lt;/a&gt;.  &lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Gives+Students+Access+to+Technical+Software+at+No+Charge+to+Inspire+Success+and+Make+a+Difference&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1434.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1434.entry</guid><pubDate>Fri, 22 Feb 2008 17:28:48 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1434/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1434.entry#comment</wfw:comment><dcterms:modified>2008-02-23T00:32:28Z</dcterms:modified></item><item><title>Microsoft Updates Popfly</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1421.entry</link><description>&lt;p&gt;An updated version of Popfly has been released with feature addition as:  &lt;ul&gt; &lt;li&gt; &lt;p&gt;Data sources, a.k.a. yellow blocks.  For everyone who has ever wanted to bring their own data into the mashup creator, we present the data source editor: comma separated values are converted into yellow data source blocks for use in the mashup designer.  &lt;li&gt; &lt;p&gt;Improved search interface.  Search for projects and users through the search bar located at the top of most pages. We’ve improved searching in Popfly Explorer as well. &lt;li&gt; &lt;p&gt;Build a better block.  For the block creators out there, you now have the ability to upload images or any other supporting files to your block.  &lt;li&gt; &lt;p&gt;Comments on profile pages.  Reach out to other community members through profile page messages. &lt;li&gt; &lt;p&gt;Better ways to invite friends.  We’ve improved the intelligence of the contact list import feature – find your friends who already have Popfly accounts, and invite others to play around with Popfly.&lt;img alt="Microsoft Popfly" src="http://img240.imageshack.us/img240/6461/popflysu2.jpg" align=right&gt; &lt;li&gt; &lt;p&gt;New blocks. MovingSlideshow (smooth panning and zooming transitions) and RSSList (would look great in a blog sidebar). &lt;li&gt; &lt;p&gt;Help Wiki.  Find more tutorials and getting started information at a new location: &lt;a href="http://www.popflywiki.com/" target="_blank"&gt;www.popflywiki.com&lt;/a&gt;. Help being relocated to the wiki – for now the team will be updating the wiki, but we’re looking into opening this up to the entire community. &lt;li&gt; &lt;p&gt;Silverlight support in Popfly Explorer. You can now add Silverlight to your Popfly Web Site.&lt;/ul&gt;Also updated is the Popfly privacy statement.  To see the updated statement, please see the &lt;a href="http://www.popfly.com/Static/PrivacyStatement.aspx" target="_blank"&gt;privacy statement link&lt;/a&gt; in the footer of the Popfly site. &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://popflyteam.spaces.live.com/blog/cns!51018025071FD37F!272.entry" target="_blank"&gt;Popfly Team Site&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Updates+Popfly&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1421.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1421.entry</guid><pubDate>Mon, 18 Feb 2008 11:53:47 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1421/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1421.entry#comment</wfw:comment><dcterms:modified>2008-02-18T11:59:12Z</dcterms:modified></item><item><title>Beta Announcement: Project Hana (MOF v4)</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1395.entry</link><description>&lt;h6&gt;Interested in improving your IT Service Management?  Optimize your IT Processes with Hana (MOF v4)&lt;/h6&gt; &lt;p&gt;Hana guidance provides a structured approach for IT process optimization.  Hana integrates MSF and MOF, plus extends the guidance to include planning and governance. Hana enables you align IT with your business goals, deliver IT as a service, and leverage compliance activities to optimize your people’s effectiveness.   &lt;h6&gt;HANA Life Cycle Model &lt;/h6&gt; &lt;p align=center&gt;&lt;a href="http://blogs.technet.com/blogfiles/mcs-ireland-infrastructure/WindowsLiveWriter/BetaAnnouncementProjectHanaMOFv4_1BF6/clip_image002_2.gif"&gt;&lt;img height=341 alt="clip_image002" src="http://blogs.technet.com/blogfiles/mcs-ireland-infrastructure/WindowsLiveWriter/BetaAnnouncementProjectHanaMOFv4_1BF6/clip_image002_thumb.gif" width=344 border=0&gt;&lt;/a&gt; &lt;p&gt;&lt;b&gt;  Guides Available in this Release&lt;/b&gt;&lt;b&gt;&lt;/b&gt; &lt;p&gt;This beta includes the following documents: &lt;p&gt;· Hana Beta Reviewers Guide 3  &lt;p&gt;· Business/IT Alignment SMF &lt;p&gt;· Change and Configuration SMF &lt;p&gt;· Customer Service SMF &lt;p&gt;· Financial Management SMF &lt;p&gt;· Problem Management SMF &lt;p&gt;· MOF Overview &lt;p&gt;· Mapping Spreadsheet (earlier versions of MOF to version 4.0) &lt;p&gt;· Design and Deliver Phase Overview &lt;p&gt;· Operate and Support Phase Overview &lt;p&gt;· Plan and Optimize Phase Overview &lt;p&gt;· Manage and Adapt Integration Layer Overview &lt;p&gt;· Build SMF &lt;p&gt;· Deploy SMF &lt;p&gt;· Envision SMF &lt;p&gt;· Governance, Risk, and Compliance SMF &lt;p&gt;· Operations Management SMF &lt;p&gt;· Policy Management SMF &lt;p&gt;· Project Plan SMF &lt;p&gt;· Reliability Management SMF &lt;p&gt;· Service Monitoring and Control SMF  &lt;p&gt;· Stabilize SMF &lt;p&gt;&lt;b&gt;  Where to Find the Beta Program&lt;/b&gt;&lt;b&gt;&lt;/b&gt; &lt;p&gt;Our goal for this beta is to receive feedback from a broad group of IT experts regarding Hana’s content structure and high-level concepts across the entire set of SMFs.  Your feedback will be addressed in our March and April beta releases, but we’ll need your input soon to make Hana the best it can be.  &lt;p&gt;Before you start reading the content, please take a look at the Reviewer’s Guide, which lists some of the specific feedback we’re seeking. We’ve intentionally presented content in different ways in certain SMFs, and how you respond to these differences will guide our final choices. The Hana beta is available on the Connect website via invitation only. &lt;p&gt;To join the Beta, please visit our &lt;a href="https://connect.microsoft.com/InvitationUse.aspx?ProgramID=1880&amp;amp;InvitationID=HANA-JJDK-8GVF&amp;amp;SiteID=14" target="_blank"&gt;Connect site&lt;/a&gt;.  &lt;p&gt;Please send your comments and feedback to &lt;a href="mailto:MOFPM@microsoft.com"&gt;MOFPM@microsoft.com&lt;/a&gt; &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://www.ditii.com/2008/02/09/microsoft-project-hana-mof-v4-beta/" target="_blank"&gt;D' Technology Weblog&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Beta+Announcement%3a+Project+Hana+(MOF+v4)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1395.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1395.entry</guid><pubDate>Sun, 10 Feb 2008 21:37:54 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1395/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1395.entry#comment</wfw:comment><dcterms:modified>2008-02-10T21:44:29Z</dcterms:modified></item><item><title>Microsoft Student Experience beta site launched</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1338.entry</link><description>&lt;p&gt;Microsoft has launched &lt;a href="http://www.microsoft.com/student/default.aspx" target="_blank"&gt;Microsoft Student Experience beta&lt;/a&gt;, a site for the Students. It has various links to sections like Academics, Careers, Socialize. It provides links to various discounted software and offers. Hope such offers are offered to Students Worldwide.&lt;br&gt;And lots of cool 'How -to' and I hope lot more will be kept added to the list. And also a download section with lots of good ones. Check out! &lt;p align=center&gt;&lt;img height=225 alt="" src="http://bp3.blogger.com/_ts0d6dVJMgQ/R4t1V7ObHII/AAAAAAAABqQ/7EGI2Ykxh1c/s400/msstudent.JPG" width=400 align=bottom border=0&gt; &lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://vasudevg.blogspot.com/2008/01/microsoft-student-experience-beta-site.html                                    "&gt;meraTechPort &lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+Student+Experience+beta+site+launched&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1338.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1338.entry</guid><pubDate>Tue, 15 Jan 2008 22:55:02 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1338/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1338.entry#comment</wfw:comment><dcterms:modified>2008-01-16T11:58:01Z</dcterms:modified></item><item><title>Microsoft SQL Server 2008 – Learning Portal</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1333.entry</link><description>&lt;p&gt;The new SQL Server 2008 Learning Portal contains the latest trainings including eBooks and e-Learnings, Instructor-lead Trainings and Certification Exams on SQL Server 2008. Go to this site to be ready for SQL Server 2008 today! &lt;p&gt;&lt;a href="http://www.microsoft.com/learning/sql/2008/default.mspx" target="_blank"&gt;Go to the Microsoft Learning Portal for SQL Server 2008&lt;/a&gt; &lt;p align=center&gt;&lt;img src="http://www.microsoft.com/learning/images/hero/SQL_Server_LP_Hero.jpg"&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Microsoft+SQL+Server+2008+%e2%80%93+Learning+Portal&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1333.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1333.entry</guid><pubDate>Sat, 12 Jan 2008 21:34:31 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1333/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1333.entry#comment</wfw:comment><dcterms:modified>2008-01-12T21:34:44Z</dcterms:modified></item><item><title>Tafiti Search source code available for download</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1275.entry</link><description>&lt;p&gt;The source code for &lt;a href="http://www.tafiti.com/" target="_blank"&gt;www.tafiti.com&lt;/a&gt; is available! &lt;p&gt;What is Tafiti? It is a search visualization website which brings a new user experience to researching (searching and storing results). It was originally created by Microsoft to demonstrate Silverlight and the Windows Live Search APIs.  &lt;p&gt;Today the Windows Live Platform team &lt;a href="http://dev.live.com/blogs/devlive/archive/2007/12/17/186.aspx" target="_blank"&gt;announced the release&lt;/a&gt; of the &lt;a href="http://codeplex.com/WLQuickApps" target="_blank"&gt;Tafiti Search Visualization source code to CodePlex&lt;/a&gt; which means any developer can download, modify, and resell the code (see &lt;a href="http://www.codeplex.com/WLQuickApps/Project/License.aspx" target="_blank"&gt;MS-PL License&lt;/a&gt; for all the details). &lt;p align=center&gt;&lt;img title="tafiti screenshots" height=184 alt="tafiti screenshots" src="http://f2uuaw.tuk.livefilestore.com/y1p1mK3Vjy2zbZ_G-4gT0aGQoBkhYdO2RsWvIUX-wYvOyq8NI1tru8PA4sXZp-Qo-aZSlg8uyiPjoU/t1.png" width=480 vspace=5 border=1&gt; &lt;p&gt;Tafiti has been released as a &lt;a href="http://dev.live.com/quickapps" target="_blank"&gt;Windows Live Quick Application&lt;/a&gt; via &lt;a href="http://codeplex.com/WLQuickApps" target="_blank"&gt;CodePlex&lt;/a&gt;, which is a set of demos developers can download and use as reference implementations or starter kits for the &lt;a href="http://dev.live.com/" target="_blank"&gt;Windows Live Platform&lt;/a&gt;. &lt;p align=center&gt;&lt;img title="Windows Live Quick Apps" height=170 alt="Windows Live Quick Apps" src="http://f2uuaw.tuk.livefilestore.com/y1p1mK3Vjy2zbb26fJJ9xo88zdMP85xId8agbOmBE4g52lnr06qMBo_U9tYQu7KHZA6bPzDC_uEOgQ/t2.png" width=480 vspace=5 border=1&gt; &lt;p&gt;You can see Tafiti running at &lt;a href="http://tafiti.mslivelabs.com/" target="_blank"&gt;http://tafiti.mslivelabs.com&lt;/a&gt; (or see the &lt;a href="http://www.tafiti.com/" target="_blank"&gt;original with the Halo3 skin&lt;/a&gt;) and to understand how to use it &lt;a href="http://www.codeplex.com/WLQuickApps/Wiki/View.aspx?title=Tafiti Walkthrough" target="_blank"&gt;read the walkthrough&lt;/a&gt; or &lt;a href="http://www.tafiti.com/walkthru.html" target="_blank"&gt;watch the video&lt;/a&gt; (4.5 minutes). &lt;p&gt;For more information see the &lt;a href="http://dev.live.com/blogs/devlive/archive/2007/12/17/186.aspx"&gt;announcement on dev.live.com&lt;/a&gt; or &lt;a href="http://blogs.msdn.com/angus_logan/archive/2007/12/18/announcement-tafiti-search-visualization-quick-app.aspx"&gt;on Angus Logan's blog&lt;/a&gt;. &lt;p&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Source:&lt;/font&gt;&lt;/strong&gt; &lt;a href="http://blogs.msdn.com/livesearch/archive/2007/12/18/tafiti-search-visualization-silverlight-live-search-api-source-code-available.aspx" target="_blank"&gt;MSDN Blogs&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Tafiti+Search+source+code+available+for+download&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1275.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1275.entry</guid><pubDate>Thu, 20 Dec 2007 20:26:44 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1275/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1275.entry#comment</wfw:comment><dcterms:modified>2007-12-20T20:28:15Z</dcterms:modified></item><item><title>XNA Game Studio 2.0 released!</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1242.entry</link><description>&lt;p&gt;Microsoft Corp. today marked the next step in its initiative to democratize game development and unleash the creativity of the community with the release of the XNA Game Studio 2.0, the next generation of the popular game development platform for Xbox 360 and Windows. The new version builds upon XNA Game Studio Express, released one year ago, and includes the ability to create online, cross-platform multiplayer games for Xbox 360 and Windows using Xbox LIVE and Games for Windows — LIVE, respectively. XNA Game Studio 2.0 adds more than 15 new features and is available for download from &lt;a href="http://creators.xna.com/" target="_blank"&gt;http://creators.xna.com&lt;/a&gt;. &lt;img alt="XNA Game Studio 2.0" src="http://ccuepg.bay.livefilestore.com/y1pv-J_8eCN1IRp9MEVFRxHiiETMXNHF7s1-9FdKIq2TCIdIdqdl2jEC-CDtSXJx2xr49gZrfpejbyQlBNskFTM5g/XNA Game Studio Express 2.0.png" align=right&gt; &lt;p&gt;“When building XNA Game Studio 2.0, we wanted to offer everyone the opportunity to utilize the rich gaming environment of LIVE used by AAA developers for titles such as ‘Halo 3’ and ‘Gears of War,’” said Chris Satchell, general manager of the XNA organization at Microsoft. “We accomplished our goal with this new toolset, and, best of all, it remains highly accessible to students, hobbyists and pros alike.”  &lt;p&gt;Many of LIVE’s best features are supported by XNA Game Studio 2.0 with minimal to no coding necessary to activate them — features such as matchmaking, which uses LIVE to find the best games for gamers to play based on their location and Internet connection. In addition, XNA Game Studio 2.0 fully supports game development with all versions of the Microsoft Visual Studio product line.  &lt;p&gt;&lt;b&gt;XNA Creators Club Academic Trial Memberships Now Free to Qualified Students and Faculty&lt;/b&gt;  &lt;p&gt;Since its release last December, XNA Game Studio has been an incredible success, with 750,000 downloads, adoption by more than 300 universities worldwide and at least nine textbooks on the tools in development. In subjects from computer science to fine arts, introductory courses to graduate and research projects, XNA Game Studio is helping faculty members and students explore the boundaries of applied gaming technology in education. Along with XNA Game Studio 2.0, Microsoft will also provide a free academic trial membership in the XNA Creators Club beginning in January, allowing faculty members and students to use XNA Game Studio 2.0 and Xbox 360 for instructional purposes.  &lt;p&gt;&lt;b&gt;Time to Dream-Build-Play Again&lt;/b&gt;  &lt;p&gt;From more than 4,500 entrants from around the world, four community games were awarded Xbox LIVE Arcade publishing contracts in this year’s Dream-Build-Play game development competition. Microsoft will once again challenge aspiring game developers to create their dream games for a chance to win more coveted publishing contracts. This week Microsoft kicks off registration for Dream-Build-Play 2008 with the Silicon Minds Warm-Up Challenge. Registration begins on Dec. 14 and winners will be announced at the Game Developers Conference, where details of the main challenge will be announced. Run in partnership with Microsoft Research’s Machine Learning Group in Cambridge, England; Rare Ltd.; and Lionhead Studios, prizes for the Warm-Up Challenge will include the once-in-a-lifetime opportunity to interview for an internship with one of those organizations.  &lt;p&gt;“Artificial intelligence is so important to the games we make at Lionhead Studios, and we are very excited to see what the community can come up with in this Warm-Up Challenge to Dream-Build-Play 2008,” said Peter Molyneux, managing director at Lionhead Studios. “We are always on the lookout for the best talent and believe that XNA Game Studio 2.0 will be a great platform for contestants to showcase their skills on.” More information about Dream-Build-Play 2008 is available at &lt;a href="http://www.dreambuildplay.com/" target="_blank"&gt;http://www.dreambuildplay.com&lt;/a&gt;.  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+XNA+Game+Studio+2.0+released!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1242.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1242.entry</guid><pubDate>Thu, 13 Dec 2007 21:20:50 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1242/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1242.entry#comment</wfw:comment><dcterms:modified>2007-12-13T21:25:14Z</dcterms:modified></item><item><title>Study: .Net overtakes Java</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1156.entry</link><description>&lt;p&gt;Microsoft's .Net software development platform is more popular than Java in the enterprise, according to one industry analyst firm's report detailed on Wednesday&lt;img alt="Microsoft .NET" src="http://www.advancedreliablesoftware.com/images/dotnet_logo.jpg" align=right&gt;  &lt;p&gt;&lt;a href="http://www.infotech.com/" target="_blank"&gt;Info-Tech Research Group&lt;/a&gt; said its research found .Net the choice over Java among enterprises of all sizes and industries. Entitled, &amp;quot;It's Official: .Net Roasts Java's Beans,&amp;quot; the study explored the relative prevalence of Java and .Net across different types of enterprises and found .Net has gained considerable market share and become the favorite of many enterprises.  &lt;p&gt;In conducting its study, Info-Tech said it recently surveyed more than 1,850 organizations of different sizes. Info-Tech's research is not sponsored, a company representative said.  &lt;p&gt;Almost half of all enterprises responding to the survey focus primarily on .Net with an additional 12 per&lt;img alt=Java src="http://blogs.zdnet.com/open-source/images/java-logo-thumb.png" align=right&gt;cent focused exclusively on .Net, the research found. This compares with just 20 percent of enterprises focusing primarily on Java and only 3 percent standardizing solely on it, Info-Tech said.  &lt;p&gt;Java is not out of the game yet, the company said. But in offering hope for Java devotees, Info-Tech likens Java to legacy code. The company said .Net may emerge as a means of stitching together diverse applications but the immense amount of Java code will remain in the tradition of other legacy systems such as Cobol. Java also has &amp;quot;incredibly strong allies&amp;quot; in Sun Microsystems, IBM and Oracle, Info-Tech said.  &lt;p&gt;Sun, which developed Java, declined to comment on the Info-Tech report. &lt;a href="http://www.infoworld.com/article/07/08/23/Sun-wants-investors-to-recognize_1.html" target="_blank"&gt;Sun recently decided to change its identification on the Nasdaq stock exchange from SUNW to JAVA&lt;/a&gt;, in recognition of its bread-and-butter brand.  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Study%3a+.Net+overtakes+Java&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1156.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1156.entry</guid><pubDate>Sun, 02 Dec 2007 19:52:39 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1156/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1156.entry#comment</wfw:comment><dcterms:modified>2007-12-02T19:53:11Z</dcterms:modified></item><item><title>Red Five Labs releases Net60 Beta 1 - a .NET Compact Framework for Symbian Series 60</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1063.entry</link><description>&lt;p&gt;What, now Symbian phones can run Windows Mobile software? &lt;br&gt;In reality Net60 in fact makes it possible to run .NET Compact Framework applications on Symbian phones but compatibility is very low - only .NET Compact Framework 1.0 while nowadays all Windows Mobile phones already have .NET Compact Framework 2.0 in ROM pre-installed and recently released Visual Studio 2008 offers already .NET Compact Framework 3.5 ! &lt;img alt="Microsoft .NET" src="http://www.advancedreliablesoftware.com/images/dotnet_logo.jpg" align=right&gt;&lt;br&gt;The release is not public but the software vendor is handpicking those who can get it or not: &lt;br&gt;&lt;i&gt;Red Five Labs announces a beta release version of Net60 - the .NET Compact Framework for S60. &lt;br&gt;Beta testers please need to complete our sign up process and wait for the account to be approved by our team. We expect to have to provide support to a large user community and tightly coupling our website to our support ticketing system allows us to provide great support to users of our site. You will efficiently be able to submit queries to us, whether bug reports or sales related questions. &lt;br&gt;This beta version supports S60 3rd edition devices. &lt;br&gt;&lt;/i&gt;To learn more, click &lt;a href="http://www.redfivelabs.com/blogs/news/archive/2007/11/10/net60-beta-1-released.aspx" target="_blank"&gt;HERE&lt;/a&gt;. &lt;br&gt;It is worth mentioning that several Windows Mobile applications are not written in .NET (i.e. managed code) at all, but are native applications (i.e. binary machine code, without bytecodes and virtual machines), and will not be running on Symbian - never ever.  &lt;p align=center&gt;&lt;img alt="Symbian OS" src="http://img485.imageshack.us/img485/8475/symbianlogopa3.jpg"&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Source:&lt;/font&gt;&lt;/strong&gt; &lt;a href="http://msmobiles.com/news.php/6923.html" target="_blank"&gt;msmobiles.com&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Red+Five+Labs+releases+Net60+Beta+1+-+a+.NET+Compact+Framework+for+Symbian+Series+60&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1063.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1063.entry</guid><pubDate>Tue, 27 Nov 2007 22:09:19 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1063/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1063.entry#comment</wfw:comment><dcterms:modified>2007-11-27T22:10:30Z</dcterms:modified></item><item><title>XNA Game Studio 2.0 Beta Now Available</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1018.entry</link><description>&lt;p&gt;The XNA team is pleased to announce the Beta release of XNA Game Studio 2.0! This Beta release is your chance to try out the new features available in XNA Game Studio 2.0, including support for Visual Studio 2005, multiplayer support over System Link and LIVE, and many more features and enhancements, many suggested by you, the community members.&lt;br&gt;If you’re an existing XNA Game Studio Express user, you won’t have to worry about uninstalling anything – XNA Game Studio 2.0 (Beta) lives comfortably side-by-side with XNA Game Studio Express. Just follow the link below to find out what’s new in XNA Game Studio 2.0 and download the Beta, as well as updated sample content you can use with the Beta right away. There’s even a multiplayer-enabled starter kit you can use to familiarize yourself with multiplayer programming in the XNA Framework.  &lt;p&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Links&lt;/font&gt;&lt;/strong&gt;&lt;br&gt;&lt;a href="http://creators.xna.com/beta/betahome.aspx" target="_blank"&gt;XNA Game Studio 2.0 (Beta) Download Page&lt;/a&gt;&lt;br&gt;&lt;a href="http://blogs.msdn.com/xna/archive/2007/11/19/now-available-xna-game-studio-2-0-beta.aspx" target="_blank"&gt;XNA Team Blog&lt;/a&gt; &lt;p align=center&gt;&lt;img alt="Microsoft XNA Game Studio" src="http://img250.imageshack.us/img250/4271/microsoftxnaxl6.png"&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+XNA+Game+Studio+2.0+Beta+Now+Available&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1018.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1018.entry</guid><pubDate>Tue, 20 Nov 2007 22:08:48 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1018/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1018.entry#comment</wfw:comment><dcterms:modified>2007-11-20T22:10:08Z</dcterms:modified></item><item><title>The Wait for Visual Studio 2008 is Over!</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1017.entry</link><description>&lt;p&gt;On Monday, Nov. 19&lt;sup&gt;&lt;/sup&gt;, Microsoft announced that Visual Studio 2008 and the .NET Framework 3.5 were released to manufacturing (RTM). With more than 250 new features,Visual Studio 2008 includes significant enhancements in every edition, including Visual Studio Express and Visual Studio Team System. Developers of all levels – from hobbyists to enterprise development teams – now have a consistent, secure and reliable solution for developing applications for the latest platforms: the Web, Windows Vista, Windows Server 2008, the 2007 Office system, and beyond.  &lt;p&gt;  &lt;ul&gt; &lt;li&gt;&lt;a href="http://msdn2.microsoft.com/subscriptions/bb608344.aspx" target="_blank"&gt;MSDN Subscribers: Get Visual Studio 2008 Now&lt;/a&gt;  &lt;li&gt;&lt;a href="http://msdn2.microsoft.com/en-us/vstudio/products/aa700831.aspx" target="_blank"&gt;Download Trial Editions of Visual Studio 2008&lt;/a&gt;  &lt;li&gt;&lt;a href="http://www.microsoft.com/express" target="_blank"&gt;Download Visual Studio 2008 Express Editions&lt;/a&gt;  &lt;li&gt;&lt;a href="http://go.microsoft.com/?linkid=7755937" target="_blank"&gt;Download the .NET Framework 3.5&lt;/a&gt;&lt;/ul&gt; &lt;p align=center&gt;&lt;a href="http://msdn2.microsoft.com/en-us/vstudio/products/default.aspx"&gt;&lt;img alt="Microsoft Visual Studio 2008" src="http://msdn2.microsoft.com/en-us/vstudio/aa718325.vs08_isHere.jpg" border=0&gt;&lt;/a&gt; &lt;p&gt; &lt;strong&gt;Source:&lt;/strong&gt; &lt;a href="http://msdn2.microsoft.com/en-us/vstudio/default.aspx" target="_blank"&gt;msdn2.microsoft.com&lt;/a&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+The+Wait+for+Visual+Studio+2008+is+Over!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1017.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1017.entry</guid><pubDate>Tue, 20 Nov 2007 02:57:13 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!1017/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!1017.entry#comment</wfw:comment><dcterms:modified>2007-11-20T02:59:01Z</dcterms:modified></item><item><title>Visual Studio 2008 to launch in November 2007</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!937.entry</link><description>&lt;p&gt;Today, during the keynote address at Microsoft TechEd Developers 2007, S. “Soma” Somasegar, corporate vice president of the Developer Division at Microsoft Corp., announced that Microsoft will release Visual Studio 2008 and the .NET Framework 3.5 by the end of November 2007. Visual Studio 2008 and the .NET Framework 3.5 enable developers at all levels to rapidly create connected applications that offer compelling user experiences for Windows Vista, Windows Server 2008, the 2007 Microsoft Office system, mobile devices and the Web. Soma also unveiled plans to open new opportunities for Visual Studio partners, as well as to deliver new tools and resources for developers, including a first Community Technology Preview (CTP) of the Microsoft Sync Framework and new capabilities for Popfly Explorer.  &lt;p&gt;“The highly social and visual nature of the Web has fundamentally changed what users expect from all applications they interact with, regardless of whether it’s on a customer-facing Web site or Windows rich client application, or a desktop business application built using Microsoft Office,” said Somasegar. “Traditionally, organizations have been hard pressed to deliver the richer, more connected applications and services they need to boost productivity, drive revenue and stay ahead of the competition. With Visual Studio 2008 and the .NET Framework 3.5, it is easy for developers to use the skills they already have to build compelling applications that take advantage of the latest platforms.” &lt;p&gt;FWBS Ltd., Xerox Corp., Dell Inc. and K2 are just a few of the early adopter customers that are already experiencing the benefits of these releases. FWBS used Visual Studio, the .NET Framework and the Microsoft Office system to build an Office Business Application (OBA) for the law field. The application enables users to work within Microsoft Office — the tools they use every day — while also dramatically improving productivity and helping users respond quickly to changing business needs. &lt;p&gt;Xerox has also had early success developing applications with the new tools. “We’ve already seen significant advantages from using Visual Studio Team System 2008 and .NET Framework 3.5. With the first application we built, we easily saved 50 percent of the time and money it would have taken to create the same application with other tools,” said Eugene Shustef, feature design lead, Global Technology, Xerox. “That’s more than a savings to IT — it delivers a huge time-to-market advantage because it put the tool into the hands of our analysts six months sooner than they would have had it otherwise.” &lt;p align=center&gt;&lt;img alt="Visual Studio 2008 Beta 2 - Install" src="http://ccuepg.bay.livefilestore.com/y1pphtrfizVyj64RJo7mETTHdIwK-ZlivM_bCGcvdV26u-qLB2-_510iO8C67vzBwWoJwfwDShDLjEsUBokoo-ZyOIXC8jKPcM3/Visual Studio 2008 Install.jpg"&gt;  &lt;p&gt;&lt;b&gt;Creating New Opportunities for Partners&lt;/b&gt; &lt;p&gt;Microsoft also announced plans to make additional investments in the Visual Studio partner ecosystem. In response to partner feedback and in order to provide better support for interoperability with other developer tools and cross-platform scenarios, Microsoft is today announcing plans to change licensing terms, no longer limiting partners to building solutions on top of Visual Studio for Windows and other Microsoft platforms only. This licensing change will be effective for the release of Visual Studio 2008 and the Visual Studio 2008 SDK. &lt;p&gt;“Integrating dynaTrace’s cross-platform application performance management and diagnostics product with Visual Studio has opened up additional commercial opportunities for our business and delivered a compelling solution for our customers. .NET and Visual Studio is a strategic platform for our business, and Microsoft’s additional investments in the partner ecosystem make it even more compelling,” said Klaus Fellner, senior director of product marketing at dynaTrace. “We’re looking forward to taking advantage of the new technology available with the launch of Visual Studio 2008 and the partner benefits available through the Visual Studio Industry Partner (VSIP) program.”  &lt;p&gt;In addition, Microsoft announced plans to create a shared source licensing program for Premier-level partners in the VSIP program. The program will provide these partners with the ability to view Visual Studio IDE source code for debugging purposes, and simplify the process of integrating their products with Visual Studio 2008.  &lt;p&gt;&lt;b&gt;Tools for Today and Tomorrow&lt;/b&gt; &lt;p&gt;Microsoft also announced a number of additional resources for developers of all skill sets, enabling them to make the most out of their Microsoft tools investments to build great applications on the latest platforms:  &lt;p&gt;  &lt;ul&gt; &lt;li&gt;The first CTP of the Microsoft Sync Framework demonstrates Microsoft’s ongoing investments in synchronization and builds on the synchronization functionality available in Visual Studio 2008. With Visual Studio 2008, developers can rapidly take advantage of offline synchronization capabilities to sync-enable applications and services eas&lt;img alt="Microsoft Visual Studio 2008" src="http://ccuepg.bay.livefilestore.com/y1pphtrfizVyj4TCE24_qISEjdCKiNoQGzcajsICXiIXWEoIp5w0mBFXOl-YgzuEGQZ_BgrqQp0nHP1ry8J8vaGG_rLXrLGcEAs/VS2008.jpg" align=right&gt;ily with rich designer support. The Microsoft Sync Framework extends the support featured in Visual Studio 2008 to also include offline and peer-to-peer collaboration using any protocol for any data type, and any data store. This is part of Microsoft’s long-term commitment to providing synchronization for partners and independent software vendors that can embed the Sync Framework into their applications easily to create rich sync-enabled ecosystems that allow any type of data to follow their customers wherever they go.&lt;br&gt; &lt;li&gt;A new release of Popfly Explorer will add new Web tools that provide Web developers and Popfly users an easy way to add Silverlight gadgets built in Popfly to their Web pages, as well as publish HTML Web pages directly to Popfly&lt;i&gt;. &lt;/i&gt;&lt;/ul&gt; &lt;p&gt;These latest releases are part of the broader Microsoft Application Platform, a portfolio of technology capabilities and core products that help organizations develop, deploy and manage applications and IT infrastructure. They also mark another major milestone leading up to the global launch of Windows Server 2008, Visual Studio 2008 and SQL Server 2008 on Feb. 27, 2008, in Los Angeles. &lt;p&gt;&lt;b&gt;Product Information and Availability&lt;/b&gt; &lt;p&gt;Visual Studio 2008 and the .NET Framework 3.5 will be available by the end of November 2007. The .NET Framework 3.5 will also be available to end users via a free, optional download from Microsoft Update. A CTP of Microsoft Sync Framework is available today at &lt;a href="http://msdn.microsoft.com/sync"&gt;http://msdn.microsoft.com/sync&lt;/a&gt;. Popfly Explorer is a hosted development environment available today at &lt;a href="http://www.popfly.com/"&gt;http://www.popfly.com&lt;/a&gt;. More information about all of these releases is available at &lt;a href="http://www.msdn.microsoft.com/vstudio"&gt;http://www.msdn.microsoft.com/vstudio&lt;/a&gt;.  &lt;p&gt;Founded in 1975, Microsoft (Nasdaq “MSFT”) is the worldwide leader in software, services and solutions that help people and businesses realize their full potential. &lt;p&gt;&lt;i&gt;Note to editors:&lt;/i&gt; If you are interested in viewing additional information on Microsoft, please visit the Microsoft Web page at &lt;a href="http://www.microsoft.com/presspass"&gt;http://www.microsoft.com/presspass&lt;/a&gt; on Microsoft’s corporate information pages. Web links, telephone numbers and titles were correct at time of publication, but may since have changed. For additional assistance, journalists and analysts may contact Microsoft’s Rapid Response Team or other appropriate contacts listed at &lt;a href="http://www.microsoft.com/presspass/contactpr.mspx"&gt;http://www.microsoft.com/presspass/contactpr.mspx&lt;/a&gt;. &lt;p&gt;&lt;strong&gt;Links&lt;br&gt;&lt;/strong&gt;&lt;a href="http://www.microsoft.com/presspass/press/2007/nov07/11-05TechEdDevelopersPR.mspx" target="_blank"&gt;&lt;font color="#ff0000"&gt;Microsoft Press Release&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://www.msdn.microsoft.com/vstudio" target="_blank"&gt;Visual Studio 2008 on MSDN&lt;/a&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Visual+Studio+2008+to+launch+in+November+2007&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!937.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!937.entry</guid><pubDate>Mon, 05 Nov 2007 19:41:18 GMT</pubDate><slash:comments>3</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!937/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!937.entry#comment</wfw:comment><dcterms:modified>2007-11-05T19:42:27Z</dcterms:modified></item><item><title>F# (F Sharp) - A Functional Programming Language</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!791.entry</link><description>&lt;p&gt;Language features such as lambda expressions in C# and generics in .NET 2.0 have roots in functional languages, and LINQ is directly based on functional programming techniques. Through LINQ and Parallel FX, ideas from functional languages are helping us address some of the biggest challenges facing the industry today, from the impedance mismatch between data and objects to the challenges of the multi-core and parallel computing space.  &lt;p&gt;Several of these key technologies have started out as projects in Microsoft Research. One of the really promising current projects from MSR is the F# programming language, spearheaded by Don Syme. F# stems from the functional programming tradition (hence the ‘F’) and has strong roots in the ML family of languages, though also draws from C#, LINQ and Haskell. F# is designed from the outset to be a first class citizen on .NET. This means that F# runs on the CLR, embraces object-oriented programming, and has features to ensure a smooth integration with the .NET Framework.  &lt;p&gt;I am a big fan of technology transfer between a research organization and a product development organization so that we can “productize” the great research ideas and deliver to customers in a timely manner. This is one of the best things that has happened at Microsoft ever since we created Microsoft Research over 15 years ago. Here is another great example of technology transfer at work. We will be partnering with Don Syme and others in Microsoft Research to fully integrate the F# language into Visual Studio and continue innovating and evolving F#. In my mind, F# is another first-class programming language on the CLR.  &lt;p&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Official Website:&lt;/font&gt;&lt;/strong&gt; &lt;a href="http://research.microsoft.com/fsharp/fsharp.aspx" target="_blank"&gt;F# (F Sharp)&lt;/a&gt; &lt;p align=center&gt;&lt;img alt="Microsoft .NET" src="http://www.advancedreliablesoftware.com/images/dotnet_logo.jpg"&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+F%23+(F+Sharp)+-+A+Functional+Programming+Language&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!791.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!791.entry</guid><pubDate>Thu, 18 Oct 2007 09:44:05 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://microsoftwow.spaces.live.com/blog/cns!28962096F48747EA!791/comments/feed.rss</wfw:commentRss><wfw:comment>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!791.entry#comment</wfw:comment><dcterms:modified>2007-10-18T09:44:59Z</dcterms:modified></item><item><title>Release of .NET Compact Framework for Symbian imminent</title><link>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!787.entry</link><description>&lt;p&gt;Symbian Smartphone Show starts next week (October 16-17, 2007) in London, EU, and while most announcements there will not be related to Windows Mobile, this one is! With .NET Compact Framework for Symbian that is being developed by Red Five Labs company from South Africa, it will be possible to run .NET applications for Windows Mobile also inside of Symbian phones. The compatibility level however is probably only .NET CF 1.1 or 1.0 (while current Windows Mobile has .NET CF 2.0 pre-installed in ROM) and unfortunately still no download is available... to prove that this whole software is not just a vaporware... &lt;br&gt;Information fromn Red Five Labs follows. &lt;br&gt;* * * * * &lt;br&gt;Red Five Labs to announce the launch of the public beta program for Net60, the first-ever commercial .NET Compact Framework implementation for S60 devices &lt;br&gt;Red Five Labs, is to announce the beta release of Net60, its ground breaking implementation of the .NET Compact Framework running on S60 3rd edition devices. &lt;br&gt;Net60 enables managed &lt;b&gt;Windows Mobile&lt;/b&gt; applications to run unchanged on S60 devices. Using C# and Visual Basic .NET in Visual Studio, developers can now use the .NET Compact Framework environment to build applications for Symbian devices. &lt;br&gt;This beta release is intended for System Integrators and Independent Software Vendors (ISVs) who are interested in exploring the possibilities of Net60 ahead of the commercial release. User feedback is highly encouraged. &lt;br&gt;For download instructions, beta release notes, known issues and to learn more about the product, please visit the beta page at &lt;a href="http://www.redfivelabs.com/content/download.aspx" target="_blank"&gt;http://www.redfivelabs.com/content/download.aspx&lt;/a&gt;&lt;br&gt;For live demonstrations, please visit us on Symbian Smartphone Show stand number 55. To arrange a meeting at the show with Red Five Labs' CEO Dusan Babich, please contact &lt;a href="mailto:press@redfivelabs.com"&gt;press@redfivelabs.com&lt;/a&gt;.  &lt;p&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Source:&lt;/font&gt;&lt;/strong&gt; &lt;a href="http://msmobiles.com/news.php/6787.html" target="_blank"&gt;msmobiles.com&lt;/a&gt; &lt;p align=center&gt;&lt;img alt="Symbian OS" src="http://img485.imageshack.us/img485/8475/symbianlogopa3.jpg"&gt; &lt;p&gt;&lt;strong&gt;&lt;em&gt;Taimur Asad&lt;/em&gt;&lt;/strong&gt; &lt;em&gt;(The Microsoft &amp;quot;Wow&amp;quot; Blog!)&lt;/em&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=2924560840743405546&amp;page=RSS%3a+Release+of+.NET+Compact+Framework+for+Symbian+imminent&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=microsoftwow.spaces.live.com&amp;amp;GT1=microsoftwow"&gt;</description><comments>http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!787.entry#comment</comments><guid isPermaLink="true">http://microsoftwow.spaces.live.com/Blog/cns!28962096F48747EA!787.entry</guid><pubDate>Tue, 16 O