www.pudn.com > WebGisMapx.rar > EntryPoint.cs


using System; 
using System.Windows.Forms; 
using System.Data; 
using System.Runtime.Remoting; 
using System.Runtime.Remoting.Channels; 
using System.Runtime.Remoting.Channels.Tcp; 
 
 
namespace WebGis 
{ 
	public class EntryPoint 
	{ 
		public static MapServer frmServer; 
		[STAThread] 
		static void Main()  
		{ 
			TcpServerChannel channel = new TcpServerChannel(8088); 
			ChannelServices.RegisterChannel(channel); 
			RemotingConfiguration.RegisterWellKnownServiceType(typeof(MapService), "MapService", WellKnownObjectMode.Singleton); 
 
			frmServer = new MapServer(); 
			Application.Run(frmServer); 
		} 
	} 
}