Click here to Skip to main content
15,883,901 members
Articles / Desktop Programming / Windows Forms

A Remoting Event (Simple and Efficient for Enterprise Solutions)

Rate me:
Please Sign up or sign in to vote.
4.84/5 (25 votes)
21 Aug 2006CPOL2 min read 162K   2.1K   85  
This article contains the simplest solutions for: the security problem for DelegateSerializationHolder, the IO problem, and the messaging speed problem. Note: Messaging speed problem will appear when your application has worked for a long time.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Remotable", "RemotableClass\Remotable.csproj", "{564FC09B-3027-43D5-9F1A-D676C43A0F43}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{DDEFEFA2-6F49-4208-9B18-571D4633741B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{3EE080E2-4B02-4C14-B079-109F5AE38952}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{564FC09B-3027-43D5-9F1A-D676C43A0F43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{564FC09B-3027-43D5-9F1A-D676C43A0F43}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{564FC09B-3027-43D5-9F1A-D676C43A0F43}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{564FC09B-3027-43D5-9F1A-D676C43A0F43}.Release|Any CPU.Build.0 = Release|Any CPU
		{DDEFEFA2-6F49-4208-9B18-571D4633741B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{DDEFEFA2-6F49-4208-9B18-571D4633741B}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{DDEFEFA2-6F49-4208-9B18-571D4633741B}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{DDEFEFA2-6F49-4208-9B18-571D4633741B}.Release|Any CPU.Build.0 = Release|Any CPU
		{3EE080E2-4B02-4C14-B079-109F5AE38952}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3EE080E2-4B02-4C14-B079-109F5AE38952}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3EE080E2-4B02-4C14-B079-109F5AE38952}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3EE080E2-4B02-4C14-B079-109F5AE38952}.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 Code Project Open License (CPOL)


Written By
Program Manager System Group
Iran (Islamic Republic of) Iran (Islamic Republic of)
Hossein Ghahvei Araghi
Birth date: 1978
Birth place: Iran
Academic Credentials : BS(Tehran University)
Microsoft Credentials : MCP, MCAD, MCTS 2.0, MCTS 3.5, MCPD 2.0, MCPD 3.5

Comments and Discussions