Click here to Skip to main content
15,879,096 members
Articles / Programming Languages / C#

Extensible WebService and its IE-Hosted Client

Rate me:
Please Sign up or sign in to vote.
4.97/5 (33 votes)
2 Nov 200313 min read 59.4K   615   49  
The article presents the design of a WebService consisting of a general part and add-ins to process user's requests of different types. Such architecture simplifies dedicated add-ins allowing them to share general part facilities.
using System;
using Framework;

namespace ProcessorAssembly1
{
	/// <summary>
	/// Summary description for Factory
	/// </summary>
	public class Factory : IFactory
	{
		public Processor CreateProcessor(object data)
		{
			return new Processor1(data);
		}
	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Israel Israel


  • Nov 2010: Code Project Contests - Windows Azure Apps - Winner
  • Feb 2011: Code Project Contests - Windows Azure Apps - Grand Prize Winner



Comments and Discussions