Click here to Skip to main content
15,886,110 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.2K   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).
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Hanray.Azurelight.Command;

namespace Hanray.Azurelight.Control
{
	public class AzurelightController : SilverlightCairngorm.Control.FrontController
	{
		public const string SC_EVENT_LOAD_FEEDBACK = "cgEvent_loadFeedBack";
		public const string SC_EVENT_POST_FEEDBACK = "cgEvent_postFeedBack";
		public const string SC_EVENT_UPDATE_FEEDBACK = "cgEvent_updateFeedBack";
		
		private static readonly AzurelightController _instance = new AzurelightController();  

		/// <summary>
		/// Returns the single instance of the controller
		/// </summary>
		/// <returns>single instance of the dispatcher</returns>
		public static AzurelightController Instance {	get { return _instance; } }

		
		// Explicit static constructor to tell C# compiler
		// not to mark type as beforefieldinit
		static AzurelightController()
		{
		}

		/// <summary>
		/// private constructor
		/// </summary>
		private AzurelightController() 
		{
			base.addCommand(SC_EVENT_LOAD_FEEDBACK, typeof(LoadFeedback));
			base.addCommand(SC_EVENT_POST_FEEDBACK, typeof(PostFeedback));
			base.addCommand(SC_EVENT_UPDATE_FEEDBACK, typeof(UpdateFeedback));
		}

	}
}

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