将客户端创建的对象传递给服务器.net远程处理

时间:2010-07-07 07:23:04

标签: c# .net remoting

如何在.net远程处理中将客户端对象传递给我的服务器对象?

这就是我正在进行测试的方式。 在我的班级图书馆:

public interface IServer 
{
  bool SubmitMessage( ISampleClass sample ); 
}

[Serializable]
public Server : MarshalByRefObject , IServer 
{
   Public Server() 
   {
   }
   public bool SubmitMessage( ISampleClass sample )
   {
     return true;
   }
}


public interface ISampleClass 
{
  string GetName();
}

[Serializable]
public class SampleClass : MarshalByRefObject , ISampleClass
{
  public SampleClass()
  {
  }
  public string GetName()
  {
    return "test";
  }
}

在我的服务器应用程序上:

IChannel channel = new TcpChannel(9988);
ChannelServices.RegisterChannel(channel,false);
RemotingConfiguration.RegisteredWellKnownServiceType( typeof(Testing.Server) ,"testremote",WellKnownObjectMode.Singleton);
RemotingConfiguration.RegisterActivatedServiceType(typeof(Testing.SampleClass));
RemotingConfiguration.ApplicationName = "TestRemote";

在我的客户端应用程序上:

Type type = typeof(Testing.Server);
Testing.IServer server = (Testing.IServer)Activator.GetOject(type,"tcp://localhost:9988/testremote");
RemotingConfiguration.RegisteredActivatedClientType(typeof(Testing.SampleClass), "tcp://localhost:9988/TestRemote");
Testing.SampleClass test = new Testing.SampleClass(); // proxy class
server.SubmitMessage(test); // Error here

我遇到的错误是:     由于安全性限制,无法访问System.Runtime.Remoting.ObjRef类型。     内部异常:请求失败。

请告诉我我做错了什么。谢谢!

1 个答案:

答案 0 :(得分:0)

我已经发现我做错了什么。 SampleClass不应该继承MarshalByRefObject。

这可能是未来对其他人的参考。