Click here to Skip to main content
15,885,216 members
Articles / Programming Languages / C#

Using Web Services for Remoting over the Internet.

Rate me:
Please Sign up or sign in to vote.
4.76/5 (38 votes)
15 Feb 2002CPOL8 min read 371.4K   4.2K   222  
This article describes a design and implementation (C#) of the Remoting over Internet using the Web Service as a gateway into the Remoting infrastructure.
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServiceListener", "http://localhost/WebServiceListener/WebServiceListener.csproj", "{B348E8D6-FAEE-4D4C-9BE3-10F33F341A67}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleClient", "ConsoleClient\ConsoleClient.csproj", "{6DF2252C-0218-490A-A09F-C824A8F567BC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyRemoteObject", "MyRemoteObject\MyRemoteObject.csproj", "{23508557-B1A4-4791-B4A6-502A2D701D3A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleServer", "ConsoleServer\ConsoleServer.csproj", "{04186F05-D52E-4622-8843-342698112E04}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServiceChannelLib", "WebServiceChannelLib\WebServiceChannelLib.csproj", "{5231B33E-A4F9-4E7D-9E31-25B1048B730D}"
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		ConfigName.0 = Debug
		ConfigName.1 = Release
	EndGlobalSection
	GlobalSection(ProjectDependencies) = postSolution
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{B348E8D6-FAEE-4D4C-9BE3-10F33F341A67}.Debug.ActiveCfg = Debug|.NET
		{B348E8D6-FAEE-4D4C-9BE3-10F33F341A67}.Debug.Build.0 = Debug|.NET
		{B348E8D6-FAEE-4D4C-9BE3-10F33F341A67}.Release.ActiveCfg = Release|.NET
		{B348E8D6-FAEE-4D4C-9BE3-10F33F341A67}.Release.Build.0 = Release|.NET
		{6DF2252C-0218-490A-A09F-C824A8F567BC}.Debug.ActiveCfg = Debug|.NET
		{6DF2252C-0218-490A-A09F-C824A8F567BC}.Debug.Build.0 = Debug|.NET
		{6DF2252C-0218-490A-A09F-C824A8F567BC}.Release.ActiveCfg = Release|.NET
		{6DF2252C-0218-490A-A09F-C824A8F567BC}.Release.Build.0 = Release|.NET
		{23508557-B1A4-4791-B4A6-502A2D701D3A}.Debug.ActiveCfg = Debug|.NET
		{23508557-B1A4-4791-B4A6-502A2D701D3A}.Debug.Build.0 = Debug|.NET
		{23508557-B1A4-4791-B4A6-502A2D701D3A}.Release.ActiveCfg = Release|.NET
		{23508557-B1A4-4791-B4A6-502A2D701D3A}.Release.Build.0 = Release|.NET
		{04186F05-D52E-4622-8843-342698112E04}.Debug.ActiveCfg = Debug|.NET
		{04186F05-D52E-4622-8843-342698112E04}.Debug.Build.0 = Debug|.NET
		{04186F05-D52E-4622-8843-342698112E04}.Release.ActiveCfg = Release|.NET
		{04186F05-D52E-4622-8843-342698112E04}.Release.Build.0 = Release|.NET
		{5231B33E-A4F9-4E7D-9E31-25B1048B730D}.Debug.ActiveCfg = Debug|.NET
		{5231B33E-A4F9-4E7D-9E31-25B1048B730D}.Debug.Build.0 = Debug|.NET
		{5231B33E-A4F9-4E7D-9E31-25B1048B730D}.Release.ActiveCfg = Release|.NET
		{5231B33E-A4F9-4E7D-9E31-25B1048B730D}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	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 (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions