//服务器控制类,这个类只是为了控制启动和关闭服务器的作用,你也可以把它的Main放到MyRemoteClass类中去。 public class MyServer { public static void Main() { //打开并注册一个服务 TcpChannel chan = new TcpChannel(8085); ChannelServices.RegisterChannel(chan); RemotingConfiguration.RegisterWellKnownServiceType( System.Type.GetType("ServerClass.MyRemoteClass"), "RemoteTest", WellKnownObjectMode.SingleCall); //保持运行 System.Console.WriteLine("Hit <enter> to exit..."); System.Console.ReadLine(); } } } 然后,实现客户端。代码分析如下: namespace ClientClass { |
正在阅读:轻松架起远程C-S体系轻松架起远程C-S体系
2004-04-19 10:35
出处:CSDN
责任编辑:sdq
键盘也能翻页,试试“← →”键