コード例 #1
0
ファイル: Program.cs プロジェクト: StevenArnauts/appserver
		private static ServerConfiguration ParseArguments(string[] args) {
			ServerConfiguration config = new ServerConfiguration();
			if (args.Length < 1) throw new Exception("Expected 1 argument");
			int port;
			if (!int.TryParse(args[0], out port)) throw new Exception("Argument 1 could not be parsed as an int");
			config.Port = port;
			return (config);
		}
コード例 #2
0
ファイル: Program.cs プロジェクト: StevenArnauts/appserver
		private static void StartServer(ServerConfiguration config) {
			BinaryClientFormatterSinkProvider clientProvider = new BinaryClientFormatterSinkProvider();
			BinaryServerFormatterSinkProvider serverProvider = new BinaryServerFormatterSinkProvider { TypeFilterLevel = TypeFilterLevel.Full };
			IDictionary props = new Hashtable();
			props["port"] = config.Port;
			TcpChannel chan = new TcpChannel(props, clientProvider, serverProvider);
			ChannelServices.RegisterChannel(chan, false);
			RemotingConfiguration.RegisterWellKnownServiceType(typeof(Server), Server.OBJECT_URI, WellKnownObjectMode.Singleton);
			foreach (var o in RemotingConfiguration.GetRegisteredWellKnownServiceTypes()) {
				Logger.Info(o.TypeName + " is listening on tcp://localhost:" + config.Port + "/" + o.ObjectUri);
			}
			
		}