Click here to Skip to main content
15,889,116 members
Articles / Programming Languages / C#

Remoting Compression Channel Sink

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
12 Nov 2008CPOL4 min read 41.9K   612   30  
An article explaining a Remoting extensible channel sink architecture and an implementation of the compression channel sink.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Business", "Business\Business.csproj", "{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{B4B20356-3DD2-419F-90D9-A77065C1E9EB}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Util", "Util\Util.csproj", "{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|.NET = Debug|.NET
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Release|.NET = Release|.NET
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Release|.NET.ActiveCfg = Release|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Release|Any CPU.Build.0 = Release|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{672D2DB8-D692-4BD8-9054-2BF01BFCC72F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Release|.NET.ActiveCfg = Release|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Release|Any CPU.Build.0 = Release|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{CF8D58FE-54B3-4B9C-B089-F68B44E8452C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Release|.NET.ActiveCfg = Release|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Release|Any CPU.Build.0 = Release|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{B4B20356-3DD2-419F-90D9-A77065C1E9EB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Release|.NET.ActiveCfg = Release|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Release|Any CPU.Build.0 = Release|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{4FBE1F87-3C00-4872-9C22-DEC4C57F8C55}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Release|.NET.ActiveCfg = Release|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Release|Any CPU.Build.0 = Release|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{F6B31CBE-A5D3-427C-AD47-8240E0DAA98F}.Release|Mixed Platforms.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
United States United States
Alexander Schmidt. I'm a software developer, who is working primarily with Microsoft technologies including Microsoft .NET. I'm also interested in optimization problems and software engineering in general. You can visit my blog at http://www.alexschmidt.net

Comments and Discussions