找不到HttpServerChannel

时间:2012-02-07 09:50:27

标签: c# http .net-remoting

我想制作一个远程应用程序。

在我的服务器应用程序中,我添加了System.Runtime.Remoting库。 在我的源代码中,我写道:

using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Http;

在课堂上,我写道:

HttpServerChannel channel = new HttpServerChannel(1111);

但后来我收到错误消息:

  

无法找到类型或命名空间名称'HttpServerChannel'(是   你错过了使用指令或程序集引用?)

你能告诉我如何解决这个问题吗?我想从HttpServerChannel类创建一个对象。 感谢。

1 个答案:

答案 0 :(得分:1)

如果Target Framework设置为 .NET Framework 4 ,则应在Visual Studio中检查服务器应用程序项目的设置。

如果目标框架设置为 .NET Framework 4 Client Profile ,则将其更改为上面指定的目标框架。

客户端配置文件中的程序集不包括服务器通道。

注意: 如果您刚开始使用.NET开发分布式应用程序,那么您应该使用Windows Communication Foundation(WCF),因为.NET Remoting已被弃用。