Click here to Skip to main content
15,894,405 members
Articles / Programming Languages / C#

Two-way Remoting with Callbacks and Events, Explained

Rate me:
Please Sign up or sign in to vote.
4.98/5 (65 votes)
19 Jul 2006CPOL9 min read 413.8K   7.5K   267  
A demonstration of how separate applications on different machines are able to effectively communicate with one another.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemotingServer", "RemotingServer\RemotingServer.csproj", "{4CACC060-03C8-4A41-BFA4-628AE6ACF803}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerClient", "ServerClient\ServerClient.csproj", "{CE031DF1-3E64-4125-8AB5-CEA6993440CD}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{4CACC060-03C8-4A41-BFA4-628AE6ACF803}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{4CACC060-03C8-4A41-BFA4-628AE6ACF803}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{4CACC060-03C8-4A41-BFA4-628AE6ACF803}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{4CACC060-03C8-4A41-BFA4-628AE6ACF803}.Release|Any CPU.Build.0 = Release|Any CPU
		{CE031DF1-3E64-4125-8AB5-CEA6993440CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{CE031DF1-3E64-4125-8AB5-CEA6993440CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{CE031DF1-3E64-4125-8AB5-CEA6993440CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{CE031DF1-3E64-4125-8AB5-CEA6993440CD}.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
Software Developer (Senior)
United Kingdom United Kingdom
Ever since my dad bought me a Commodore 64 (some years back) I have been hooked to programming. For most of my working career I have worked intensely with C# (WinForms and WPF) but a few years back I started to investigate browser technologies and frameworks which are much more powerful than I thought at first!

I studied International Marketing but found the IT sector much more challenging. So straight from uni I took on some IT contract work in London in a buoyant market and never looked back.

If you wish to contact me then please do so on heeremans.marcel@gmail.com

Comments and Discussions