Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / C#

.NET Remoting and Cross Domain Marshalling

Rate me:
Please Sign up or sign in to vote.
4.80/5 (11 votes)
10 Apr 2006CPOL6 min read 88.9K   1.3K   59  
An article about how to marshal a remote client request from one AppDomain to another.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{6FB7951F-48F2-4D46-B39E-42BF7740D3C5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{8D66058E-4E52-4B8C-8176-953DC48765D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{308D5BF4-A5C1-41B0-8FD5-7F91FB9DDDC8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Service", "Service\Service.csproj", "{C9DE0502-2836-4D4D-808A-F212BC5924E9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AA1A7BCD-0897-4CBD-99EE-7E91E0EDBBCE}"
	ProjectSection(SolutionItems) = preProject
		CrossDomain-Marshalling.html = CrossDomain-Marshalling.html
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{6FB7951F-48F2-4D46-B39E-42BF7740D3C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{6FB7951F-48F2-4D46-B39E-42BF7740D3C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{6FB7951F-48F2-4D46-B39E-42BF7740D3C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{6FB7951F-48F2-4D46-B39E-42BF7740D3C5}.Release|Any CPU.Build.0 = Release|Any CPU
		{8D66058E-4E52-4B8C-8176-953DC48765D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8D66058E-4E52-4B8C-8176-953DC48765D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8D66058E-4E52-4B8C-8176-953DC48765D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8D66058E-4E52-4B8C-8176-953DC48765D8}.Release|Any CPU.Build.0 = Release|Any CPU
		{308D5BF4-A5C1-41B0-8FD5-7F91FB9DDDC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{308D5BF4-A5C1-41B0-8FD5-7F91FB9DDDC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{308D5BF4-A5C1-41B0-8FD5-7F91FB9DDDC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{308D5BF4-A5C1-41B0-8FD5-7F91FB9DDDC8}.Release|Any CPU.Build.0 = Release|Any CPU
		{C9DE0502-2836-4D4D-808A-F212BC5924E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C9DE0502-2836-4D4D-808A-F212BC5924E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C9DE0502-2836-4D4D-808A-F212BC5924E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C9DE0502-2836-4D4D-808A-F212BC5924E9}.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
Web Developer
United States United States
I am a consultant, trainer, software archtect/engineer, since the early 1980s, working in the greater area of Boston, MA, USA.

My work comprises the entire spectrum of software, shrink-wrapped applications, IT client-server, systems and protocol related work, compilers and operating systems, and more ....

I am currently focused on platform development for distributed computing in service oriented data centers.

Comments and Discussions