Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight 3 hosting

Tags:

silverlight

I'm a bit confused about hosting Silverlight apps.

On one hand I see that I can host the silverlight app on a linux server just defining the mime type, on the other I see some hosting sites saying they are silverlight compatible.

And I also want to play around with the "out of browser" funcionality of silverlight 3. What do I need to do this?

Thanks in advance

like image 983
Artur Carvalho Avatar asked Apr 12 '26 08:04

Artur Carvalho


1 Answers

All Silverlight needs in order to be hosted on a server is the XAP file and the mime type set. Thats it. If you want your app to work "out of browser", there is nothing specific that your server needs to support either.

If you want that Silverlight app to talk to your WCF service or be hosted in an ASP page, you need those services hosted in IIS... but Silverlight, itself is just a single binary file for its distribution, which can be hosted on any site with the mime type.

Marketing buzz words beyond that.

like image 173
Brian Genisio Avatar answered Apr 15 '26 03:04

Brian Genisio