Click here to Skip to main content
15,892,059 members
Articles / Programming Languages / C#

Hosting multiple services in separate AppDomains

Rate me:
Please Sign up or sign in to vote.
4.61/5 (9 votes)
20 Jun 2007CPOL3 min read 59.4K   871   47  
An article that discusses hosting multiple services in separate AppDomains

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceHost", "ServiceHost\ServiceHost.csproj", "{9DE1A0F8-4610-4E0F-8525-967484410D78}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ServiceHost.Install", "ServiceHost.Install\ServiceHost.Install.vdproj", "{FEEA2D7D-60D5-4E5E-A230-ACD38369835C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceHost.Shared", "ServiceHost.Shared\ServiceHost.Shared.csproj", "{70B21705-7BBB-433F-9A2D-C5EA3607F498}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceOne", "ServiceOne\ServiceOne.csproj", "{527761D9-2BFE-45AD-987B-DB51684FD953}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceTwo", "ServiceTwo\ServiceTwo.csproj", "{BBE9F331-C234-4002-B76E-3DC64061DABB}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ServiceOne.Install", "ServiceOne.Install\ServiceOne.Install.vdproj", "{EC90D659-866E-41C0-AA5B-9D2F3661066E}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ServiceTwo.Install", "ServiceTwo.Install\ServiceTwo.Install.vdproj", "{467D5343-7E21-4AF6-A08E-E90E16CBF84A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0B012AC2-9418-4389-8760-5CF675CE7831}"
	ProjectSection(SolutionItems) = preProject
		ServiceHost.html = ServiceHost.html
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{9DE1A0F8-4610-4E0F-8525-967484410D78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{9DE1A0F8-4610-4E0F-8525-967484410D78}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{9DE1A0F8-4610-4E0F-8525-967484410D78}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{9DE1A0F8-4610-4E0F-8525-967484410D78}.Release|Any CPU.Build.0 = Release|Any CPU
		{FEEA2D7D-60D5-4E5E-A230-ACD38369835C}.Debug|Any CPU.ActiveCfg = Debug
		{FEEA2D7D-60D5-4E5E-A230-ACD38369835C}.Release|Any CPU.ActiveCfg = Release
		{70B21705-7BBB-433F-9A2D-C5EA3607F498}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{70B21705-7BBB-433F-9A2D-C5EA3607F498}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{70B21705-7BBB-433F-9A2D-C5EA3607F498}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{70B21705-7BBB-433F-9A2D-C5EA3607F498}.Release|Any CPU.Build.0 = Release|Any CPU
		{527761D9-2BFE-45AD-987B-DB51684FD953}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{527761D9-2BFE-45AD-987B-DB51684FD953}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{527761D9-2BFE-45AD-987B-DB51684FD953}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{527761D9-2BFE-45AD-987B-DB51684FD953}.Release|Any CPU.Build.0 = Release|Any CPU
		{BBE9F331-C234-4002-B76E-3DC64061DABB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{BBE9F331-C234-4002-B76E-3DC64061DABB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{BBE9F331-C234-4002-B76E-3DC64061DABB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{BBE9F331-C234-4002-B76E-3DC64061DABB}.Release|Any CPU.Build.0 = Release|Any CPU
		{EC90D659-866E-41C0-AA5B-9D2F3661066E}.Debug|Any CPU.ActiveCfg = Debug
		{EC90D659-866E-41C0-AA5B-9D2F3661066E}.Release|Any CPU.ActiveCfg = Release
		{467D5343-7E21-4AF6-A08E-E90E16CBF84A}.Debug|Any CPU.ActiveCfg = Debug
		{467D5343-7E21-4AF6-A08E-E90E16CBF84A}.Release|Any CPU.ActiveCfg = Release
	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