If I wanted to host a LightSwitch application on my home computer, what would I need to do? My home computer has a Verizon FIOS connection. What software, configuration, etc. would I need?
|
feedback
|
|
I assume you mean a 3 tier web/silverlight LightSwitch application. This is just like any other Silverlight app - all you will need on your home computer is IIS (to host the website and services) and your data source (eg. SQL Server). Check out the "Publish application wizard." | ||||
|
feedback
|
|
Take a look at How to: Deploy a LightSwitch Application for details. From the article -
| |||
|
feedback
|
|
If you publish your LS app as a "desktop" app, all you need is an instance of SQL Server. This can be SQL Express, or some other flavor of SQL Server that you may happen to already have on your machine. You could also use an instance of SQL server that's available to you on the network that you're connected to, if you wanted to do it that way. You could even use the instance of SQL Express that LS installs for you (that MUST be there, you CAN'T uninstall it, or the debugging experience won't work any more). You don't need anything else, there will still be three "tiers", but all three can be on your computer. You don't need IIS on your machine, a local web server will be created for you by the publish wizard. Here's a link that'll give you the "official" steps to deploy a desktop app. How to: Deploy a 2-tier Application - http://msdn.microsoft.com/en-us/library/ff852056.aspx Yann | |||
|
feedback
|