Click here to Skip to main content
15,887,214 members
Articles / Programming Languages / C#

A TCP/IP Server written in C#

Rate me:
Please Sign up or sign in to vote.
4.64/5 (62 votes)
29 Dec 2003CPOL8 min read 564K   59.4K   225  
TCP/IP Server, which is running as a Windows Service waiting for client requests
using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;

namespace TCPService
{
	/// <summary>
	/// Summary description for TCPInstaller.
	/// </summary>
	[RunInstaller(true)]
	public class TCPInstaller : System.Configuration.Install.Installer
	{
		private System.ServiceProcess.ServiceProcessInstaller TCPServiceProcessInstaller;
		private System.ServiceProcess.ServiceInstaller TCPServiceInstaller;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public TCPInstaller()
		{
			// This call is required by the Designer.
			InitializeComponent();

			// TODO: Add any initialization after the InitializeComponent call
		}

		/// <summary> 
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}


		#region Component Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.TCPServiceProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller();
			this.TCPServiceInstaller = new System.ServiceProcess.ServiceInstaller();
			// 
			// TCPServiceProcessInstaller
			// 
			this.TCPServiceProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
			this.TCPServiceProcessInstaller.Password = null;
			this.TCPServiceProcessInstaller.Username = null;
			// 
			// TCPServiceInstaller
			// 
			this.TCPServiceInstaller.DisplayName = "TCP";
			this.TCPServiceInstaller.ServiceName = "TCPService";
			// 
			// TCPInstaller
			// 
			this.Installers.AddRange(new System.Configuration.Install.Installer[] {
																					  this.TCPServiceProcessInstaller,
																					  this.TCPServiceInstaller});

		}
		#endregion
	}
}

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
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions