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

Distributed Command Pattern - an extension of command pattern for connected systems

Rate me:
Please Sign up or sign in to vote.
4.87/5 (74 votes)
25 Jan 2005CPOL16 min read 262.3K   2.7K   252  
Distributed Command Pattern is a pattern for connected systems which implements command pattern. It frees designers from thinking about the communication and helps them concentrate on implementing commands as if it is a regular desktop application. The framework takes care of the communication.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedCommand.Chat", "DistributedCommand.Chat\DistributedCommand.Chat.csproj", "{2F6891CE-8CCC-4512-BC08-BF22358403FA}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedCommand.Framework", "DistributedCommand.Framework\DistributedCommand.Framework.csproj", "{D8646AF0-D882-4135-8424-5DD770B5A1B0}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedCommand.HTTPProvider", "DistributedCommand.HTTPProvider\DistributedCommand.HTTPProvider.csproj", "{5988D099-B735-405C-8A46-BF169A19783F}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{2F6891CE-8CCC-4512-BC08-BF22358403FA}.Debug.ActiveCfg = Debug|.NET
		{2F6891CE-8CCC-4512-BC08-BF22358403FA}.Debug.Build.0 = Debug|.NET
		{2F6891CE-8CCC-4512-BC08-BF22358403FA}.Release.ActiveCfg = Release|.NET
		{2F6891CE-8CCC-4512-BC08-BF22358403FA}.Release.Build.0 = Release|.NET
		{D8646AF0-D882-4135-8424-5DD770B5A1B0}.Debug.ActiveCfg = Debug|.NET
		{D8646AF0-D882-4135-8424-5DD770B5A1B0}.Debug.Build.0 = Debug|.NET
		{D8646AF0-D882-4135-8424-5DD770B5A1B0}.Release.ActiveCfg = Release|.NET
		{D8646AF0-D882-4135-8424-5DD770B5A1B0}.Release.Build.0 = Release|.NET
		{5988D099-B735-405C-8A46-BF169A19783F}.Debug.ActiveCfg = Debug|.NET
		{5988D099-B735-405C-8A46-BF169A19783F}.Debug.Build.0 = Debug|.NET
		{5988D099-B735-405C-8A46-BF169A19783F}.Release.ActiveCfg = Release|.NET
		{5988D099-B735-405C-8A46-BF169A19783F}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	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 Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions