Click here to Skip to main content
15,886,833 members
Articles / Web Development / CSS

Building a 3-Tier App with Silverlight 3, .NET RIA Services, and Azure Table Storage

Rate me:
Please Sign up or sign in to vote.
4.89/5 (28 votes)
11 Jul 2009CDDL19 min read 164.4K   1.7K   148  
This article presents the techniques and caveats of building a 3-tire Azure hosted application using Silverlight 3 (presentation tier), .NET RIA services (business logic and data access), and Windows Azure Table (data storage).

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{CC5FD16D-436D-48AD-A40C-5A424C6E3E79}") = "Azurelight", "Azurelight\Azurelight\Azurelight.ccproj", "{29192C3C-A5AB-437B-80DB-A813F5704F97}"
	ProjectSection(ProjectDependencies) = postProject
		{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA} = {5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azurelight_WebRole", "Azurelight\Azurelight_WebRole\Azurelight_WebRole.csproj", "{008596F1-A1E1-4C1A-88CE-298D4183B53C}"
	ProjectSection(ProjectDependencies) = postProject
		{28DFB62D-C459-49E9-B985-2150CB9578DB} = {28DFB62D-C459-49E9-B985-2150CB9578DB}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzurelightNav", "AzurelightNav\AzurelightNav.csproj", "{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}"
	ProjectSection(ProjectDependencies) = postProject
		{008596F1-A1E1-4C1A-88CE-298D4183B53C} = {008596F1-A1E1-4C1A-88CE-298D4183B53C}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure", "Azure\Azure.csproj", "{28DFB62D-C459-49E9-B985-2150CB9578DB}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{29192C3C-A5AB-437B-80DB-A813F5704F97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{29192C3C-A5AB-437B-80DB-A813F5704F97}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{29192C3C-A5AB-437B-80DB-A813F5704F97}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{29192C3C-A5AB-437B-80DB-A813F5704F97}.Release|Any CPU.Build.0 = Release|Any CPU
		{008596F1-A1E1-4C1A-88CE-298D4183B53C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{008596F1-A1E1-4C1A-88CE-298D4183B53C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{008596F1-A1E1-4C1A-88CE-298D4183B53C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{008596F1-A1E1-4C1A-88CE-298D4183B53C}.Release|Any CPU.Build.0 = Release|Any CPU
		{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5AC43625-0C8C-4B9F-9C7F-513CE487E7FA}.Release|Any CPU.Build.0 = Release|Any CPU
		{28DFB62D-C459-49E9-B985-2150CB9578DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{28DFB62D-C459-49E9-B985-2150CB9578DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{28DFB62D-C459-49E9-B985-2150CB9578DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{28DFB62D-C459-49E9-B985-2150CB9578DB}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Technical Lead
United States United States
https://github.com/modesty

https://www.linkedin.com/in/modesty-zhang-9a43771

https://twitter.com/modestyqz

Comments and Discussions