Building the Infrastructure
A web service that hosts a SL-enabled WCF Service
A Silverlight client for both a browser and a Windows Phone 7
A data tier to host our data
A SQL Azure database and a SQL Server On-Premise database
Let’s start by creating a new "Blank Visual Studio Solution.” Remember that a solution can hold many projects.
Step 1
Step 2
Step 3
Step 4
Step 5
My Subject Goes Here
Step 6
Step 7
Step 8
Step 9
Some code
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TierWebWcfHost_WebRole._Default" %> <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"> </asp:Content> <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <h2> Welcome to ASP.NET! </h2> <p> To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">www.asp.net</a>. </p> <p> You can also find <a href="http://go.microsoft.com/fwlink/?LinkID=152368&clcid=0x409" title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>. </p> </asp:Content>
Step 10
Here is how you can see the local developer fabric running
One instance is running
Obviously, we are not running in the cloud yet. We are running in the local developer fabric.
More posts coming soon