Click here to Skip to main content
15,881,248 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 163.8K   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;

namespace SilverlightCairngorm
{
	/**
	 * Stores Cairngorm message codes.
	 * 
	 * <p>All messages/error codes must match the regular expression:
	 *
	 * C\d{4}[EWI]
	 *
	 * 1. The application prefix e.g. 'C'.
	 * 
	 * 2. A four-digit error code that must be unique.
	 * 
	 * 3. A single character severity indicator
	 *    (E: error, W: warning, I: informational).</p>
	 */
	public static class CairngormMessageCodes
	{
	   public const String SINGLETON_EXCEPTION = "C0001E";
	   public const String SERVICE_NOT_FOUND = "C0002E";
	   public const String COMMAND_ALREADY_REGISTERED = "C0003E";
	   public const String COMMAND_NOT_FOUND = "C0004E";
	   public const String VIEW_ALREADY_REGISTERED = "C0005E";
	   public const String VIEW_NOT_FOUND = "C0006E";
	   public const String REMOTE_OBJECT_NOT_FOUND = "C0007E";	
	   public const String HTTP_SERVICE_NOT_FOUND = "C0008E";
	   public const String WEB_SERVICE_NOT_FOUND = "C0009E";
	   public const String CONSUMER_NOT_FOUND = "C0010E";
	   public const String PRODUCER_NOT_FOUND = "C0012E";
	   public const String DATA_SERVICE_NOT_FOUND = "C0013E";
	   public const String ABSTRACT_METHOD_CALLED = "C0014E";
	   public const String COMMAND_NOT_REGISTERED = "C0015E";
	   public const String COMMAND_NOT_IMPLEMENT_ICOMMAND = "C0016E";
	}
}

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