What are the server requirements for Silverlight 2? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T11:47:01Zhttp://stackoverflow.com/feeds/question/281507http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/281507/what-are-the-server-requirements-for-silverlight-21What are the server requirements for Silverlight 2?Guy2008-11-11T17:10:38Z2008-11-11T17:32:04Z
<p>Can a Silverlight 2 enabled web page be managed from an Apache server? (I'm not actually interested in doing this but trying to understand Silverlight 2 a bit more.)</p>
<p>Assuming that I have IIS6 and Server 2003 what are the .NET version requirements to host a web site with Silverlight 2? Are .NET 3.0 and 3.5 required on the server? My thinking is not because this is a client side technology.</p>
http://stackoverflow.com/questions/281507/what-are-the-server-requirements-for-silverlight-2/281519#2815190Answer by Galwegian for What are the server requirements for Silverlight 2?Galwegian2008-11-11T17:13:04Z2008-11-11T17:13:04Z<p>The <a href="http://www.microsoft.com/silverlight/overview/faq.aspx#sys-req" rel="nofollow">system requirements for Microsoft Silverlight</a> and associated technologies are listed below.</p>
<pre><code>* Windows
o Operating System: Windows Vista; Windows XP Service Pack 2
o Intel® Pentium® III 450MHz or faster processor (or equivalent)
o 128MB of RAM
* Mac OS
o Operating System: Apple Mac OS X 10.4.8 or above
o Intel Core⢠Duo 1.83GHz or faster processor
o 128MB of RAM
* Linux. For the system requirements, please refer to the Mono Project's Moonlight Web site.
</code></pre>
http://stackoverflow.com/questions/281507/what-are-the-server-requirements-for-silverlight-2/281524#2815243Answer by splattne for What are the server requirements for Silverlight 2?splattne2008-11-11T17:14:38Z2008-11-11T17:32:04Z<p>Since Silverlight is a browser technology, it is <strong>server-agnostic</strong> and can be hosted on a variety of server platforms: LAMP, UNIX, and IIS. You don't have to install .NET or any other Microsoft software on the server.</p>
<p>The only configuration required on the web server is to <strong>register the MIME types for content being served</strong>. If not already registered, you'll have to add following entries.</p>
<p>There are three MIME types required:</p>
<ul>
<li>.xaml - application/xaml+xml</li>
<li>.xap - application/x-silverlight-app</li>
<li>.xbap - application/x-ms-xbap</li>
</ul>
<p>Here are some instructions <a href="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx" rel="nofollow">how to do that for Apache and IIS</a>.</p>
<p>Needless to say, some features such as <a href="http://blogs.msdn.com/jitghosh/archive/2007/11/30/demo-live-streams-in-silverlight.aspx" rel="nofollow">WMS Streaming</a> rely on a server supporting them.</p>
http://stackoverflow.com/questions/281507/what-are-the-server-requirements-for-silverlight-2/281533#2815330Answer by Nick for What are the server requirements for Silverlight 2?Nick2008-11-11T17:17:58Z2008-11-11T17:17:58Z<p>If your server can serve the XAP files, there should be know problem hosting Silverlight in any server you want. Silverlight is a client technology. Your server just sends it to the browser and it's up to the client to do anything with it.</p>
http://stackoverflow.com/questions/281507/what-are-the-server-requirements-for-silverlight-2/281544#2815441Answer by BrianLy for What are the server requirements for Silverlight 2?BrianLy2008-11-11T17:21:49Z2008-11-11T17:21:49Z<p>Apart from mime types there should not be a dependency on a particular server technology. </p>
<p>With newer IIS versions, mime types have been locked down more so you need to add an entry for a .rar file (example). It may be the case that a server admin might customize the mime configuration and prevent a .xap file from being downloaded correctly.</p>