Welcome to Windows Presentation Foundation (WPF)
Top Tasks :

WPF Team Bloggers

Browse by Tags

All Tags » silverlight » silverlight 2   (RSS)

  • Interview With Effective UI

    Effective UI has put together a site called the User Interface Resource Center .  They were kind enough to interview me about WPF, Silverlight, Expression and more.  As they put it: In the 2008 whitepaper “The New Iteration,” Karsten Read More...
  • Uploading Silverlight 2 Content to Silverlight Streaming

    Following on very nicely from my last post on deploying Silverlight content to your own production server , I'm pleased to announce that Silverlight Streaming has added full support for Silverlight 2 applications. As well as adding the basic support, the team have put a lot of work into simplifying the process of uploading and validating your application. Here's a basic walkthrough: Create your Silverlight 2 application using Visual Studio or Expression Blend, do all the usual test / debug steps, etc. Create a manifest file named manifest.xml, that describes how you want the control to be hosted. Here's a simple sample you can use as a template: < SilverlightApp > < version > 2.0 </ version > < source > PopTheBubble.xap </ source > < width > 400 </ width > < height > 300 </ height > < background > white </ background > < isWindowless > false </ isWindowless > </ SilverlightApp > Zip your application .xap Read More...
  • Configuring a Web Server to Host Silverlight Content

    Deploying Silverlight content to a production web server is a pretty easy process. Despite occasional misconception, Silverlight doesn't require a Microsoft-based web server: Apache can host up Silverlight content just as happily as IIS. But there's one little gotcha: web servers are typically configured to only serve up a limited set of known file extensions as static content. That's all well and good, but Silverlight introduces two new file extensions (.xaml for loose XAML files and .xap for the zip-based binary packaging format). As a result, you need to add the MIME types for those file extensions to your web server so that it recognizes Silverlight content appropriately. Here are the MIME types you need to add to the server configuration: Extension MIME Type .xaml application/xaml+xml .xap application/x-silverlight-app That's all you have to do. Unfortunately, it's not possible to provide generic instructions for how to add MIME types, as it varies from server to server, but here are Read More...

Copyright © 2006 Microsoft Corporation. All Rights Reserved. | Terms of Use | Privacy Statement | Contact Us