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

Cross Domain/Platform Authentication and Data Transfer

Rate me:
Please Sign up or sign in to vote.
4.87/5 (10 votes)
29 Dec 2008CPOL14 min read 90.2K   917   66  
Introduces a methodology for authenticating user in cross domain/platform and transferring user data from one site to another during the authentication process.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "AuthenticationSite", "AuthenticationSite", "{9ACC8DAA-1424-49C7-B7E3-06D74AFD04CF}"
	ProjectSection(WebsiteProperties) = preProject
		TargetFramework = "3.5"
		Debug.AspNetCompiler.VirtualPath = "/AuthenticationSite"
		Debug.AspNetCompiler.PhysicalPath = "AuthenticationSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\AuthenticationSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/AuthenticationSite"
		Release.AspNetCompiler.PhysicalPath = "AuthenticationSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\AuthenticationSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "3840"
		VWDDynamicPort = "false"
	EndProjectSection
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "ThirdPartySite", "ThirdPartySite", "{700A63EA-3AD3-489A-A4EA-074FFB7AC640}"
	ProjectSection(WebsiteProperties) = preProject
		TargetFramework = "3.5"
		Debug.AspNetCompiler.VirtualPath = "/ThirdPartySite"
		Debug.AspNetCompiler.PhysicalPath = "ThirdPartySite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\ThirdPartySite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/ThirdPartySite"
		Release.AspNetCompiler.PhysicalPath = "ThirdPartySite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\ThirdPartySite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "3876"
		VWDDynamicPort = "false"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|.NET = Debug|.NET
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{9ACC8DAA-1424-49C7-B7E3-06D74AFD04CF}.Debug|.NET.ActiveCfg = Debug|.NET
		{9ACC8DAA-1424-49C7-B7E3-06D74AFD04CF}.Debug|.NET.Build.0 = Debug|.NET
		{700A63EA-3AD3-489A-A4EA-074FFB7AC640}.Debug|.NET.ActiveCfg = Debug|.NET
		{700A63EA-3AD3-489A-A4EA-074FFB7AC640}.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
Web Developer
United States United States
Web & Database Developer. Design and implement web and database applications utilizing Microsoft and other development tools.

Comments and Discussions