首页上一页 1 下一页尾页 1 条记录 1/1页
关于remoting文件传递请教七。
发表在C#图书答疑
2010-07-03
是否精华
是
否
版块置顶:
是
否
1..感谢您们及时回帖。
2..我等待您们的新书,等待有关远程,线程,进程之间的通信等方面的专题好书!
3..E:\c#范例宝典2008\mingrisoft\19\EX19_03,服务器端的回答,满意,知道怎么回事。
客户端的chnl怎样获得?详细请看一下内容:
private void RemotingClientForm_Load(object sender, EventArgs e)
{ChannelServices.RegisterChannel(new TcpChannel());
WellKnownClientTypeEntry RemotingConfing = new WellKnownClientTypeEntry(typeof(FarClass), "tcp://localhost:9999/TcpService");
RemotingConfiguration.RegisterWellKnownClientType(RemotingConfing);
// RemotingConfiguration.Configure("RemotingClient.exe.Config",false);
fc = new FarClass();
}
警告1 “System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel)”已过时:“Use System.Runtime.Remoting.ChannelServices.RegisterChannel(IChannel chnl, bool ensureSecurity) instead.” E:\c#范例宝典2008\mingrisoft\19\EX19_03\RemotingClient\RemotingClient\RemotingClientForm.cs 33 12 RemotingClient
//////////////////////////////////////////////////////////////////////////
对于这条语句系统就不认了,???
ChannelServices.RegisterChannel(new TcpChannel());
系统提示”已过时:“Use
怎样选择(IChannel chnl, bool ensureSecurity)参数呢?
(1)chnl从哪儿来?
(2)true/flase,选哪一个?
4..也许今后我可能还提出范围之外的问题,按读者的需求来理解就行了。您们的回答我满意。
2..我等待您们的新书,等待有关远程,线程,进程之间的通信等方面的专题好书!
3..E:\c#范例宝典2008\mingrisoft\19\EX19_03,服务器端的回答,满意,知道怎么回事。
客户端的chnl怎样获得?详细请看一下内容:
private void RemotingClientForm_Load(object sender, EventArgs e)
{ChannelServices.RegisterChannel(new TcpChannel());
WellKnownClientTypeEntry RemotingConfing = new WellKnownClientTypeEntry(typeof(FarClass), "tcp://localhost:9999/TcpService");
RemotingConfiguration.RegisterWellKnownClientType(RemotingConfing);
// RemotingConfiguration.Configure("RemotingClient.exe.Config",false);
fc = new FarClass();
}
警告1 “System.Runtime.Remoting.Channels.ChannelServices.RegisterChannel(System.Runtime.Remoting.Channels.IChannel)”已过时:“Use System.Runtime.Remoting.ChannelServices.RegisterChannel(IChannel chnl, bool ensureSecurity) instead.” E:\c#范例宝典2008\mingrisoft\19\EX19_03\RemotingClient\RemotingClient\RemotingClientForm.cs 33 12 RemotingClient
//////////////////////////////////////////////////////////////////////////
对于这条语句系统就不认了,???
ChannelServices.RegisterChannel(new TcpChannel());
系统提示”已过时:“Use
怎样选择(IChannel chnl, bool ensureSecurity)参数呢?
(1)chnl从哪儿来?
(2)true/flase,选哪一个?
4..也许今后我可能还提出范围之外的问题,按读者的需求来理解就行了。您们的回答我满意。