这是我在这里的第一篇文章 我开始构建远程客户端/服务器 但每次尝试连接服务器时都会收到此错误
System.Runtime.Remoting.RemotingException: 'Trying to create a proxy to an unbound type.'
关于我的代码
在这里:
URI = "TCP://" + TextBox1.Text + ":6600/mycaptureViewerService"
chan = New TcpChannel()
ChannelServices.RegisterChannel(chan)
obj = DirectCast(Activator.GetObject(GetType(ViewerService.ViewerService), URI), ViewerService.ViewerService)
connected = True
Timer1.Enabled = True
通过计时器包含相同的代码