Click here to Skip to main content
15,884,176 members
Articles / Silverlight
Alternative
Tip/Trick

Server requirements for Silverlight application deployment:

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
28 Mar 2010CPOL 5.9K  
The silverlight dose not need any special server requirements. Silverlight websites can be run on very simple windows servers having dotnet framework, ms sql (If website need). All you need to add MIME types to support the correct content type interpretation by the browser. Generally in IIS7,...
The silverlight dose not need any special server requirements. Silverlight websites can be run on very simple windows servers having dotnet framework, ms sql (If website need). All you need to add MIME types to support the correct content type interpretation by the browser. Generally in IIS7, these MIME types are already added. If they are not it will give errors such as 404.3 or may prompt to download etc.

There are 3 MIME types need to add.

1. .xaml

2. .xap

3. .xbap

Below are the steps to add MIME types into IIS6.

1. Open the IIS.

2. Right click on website / Domain Name.

3. Click on “Properties”.

4. Select the registrar “HTTP-Header”.

5. Select the register “HTTP-Header”
6. Click on the button “MIME Types”.
7. If .xaml is not listed as a type, Click on “New”
8. Enter the following description:

Extension: .xaml
MIME type: application/xaml+xml

9. Click “Ok”,
10. Do the same for .xap and .xbap
11. Click on “Apply”

That’s it.

Original post you will get at
http://www.goonclick.com/server-requirements-for-silverlight/[^]

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Atos
India India
I'm working as software developer from more than 5 years in asp.net.

Comments and Discussions

 
-- There are no messages in this forum --