Click here to Skip to main content
15,896,207 members
Articles / Web Development / ASP.NET

A Simple ASP.NET State Server Failover Scheme

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
2 Feb 2010CPOL6 min read 61.3K   738   36  
Set up failover and load balancing support for web applications that make use of the ASP.NET state server

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\SampleWeb\", ".", "{0CB67CCC-30A7-4FD6-8E8B-5D641AB61EE1}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.VirtualPath = "/SampleWeb"
		Debug.AspNetCompiler.PhysicalPath = "..\..\WebSites\SampleWeb\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\SampleWeb\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/SampleWeb"
		Release.AspNetCompiler.PhysicalPath = "..\..\WebSites\SampleWeb\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\SampleWeb\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "3604"
		DefaultWebSiteLanguage = "Visual C#"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|.NET = Debug|.NET
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{0CB67CCC-30A7-4FD6-8E8B-5D641AB61EE1}.Debug|.NET.ActiveCfg = Debug|.NET
		{0CB67CCC-30A7-4FD6-8E8B-5D641AB61EE1}.Debug|.NET.Build.0 = Debug|.NET
	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
United States United States
Sunny has been developing software for the Microsoft-based platforms since the MS-DOS days. He has coded in C, VB (4 to 6) and C#. He enjoys designing and developing server-side .NET distributed applications.

He currently works for a Fortune 500 company. When he's not coding, he likes reading, hanging out with friends and sight-seeing.

Comments and Discussions