无法加载类型错误,.Net Remoting

发布于 2024-10-30 05:49:17 字数 1378 浏览 1 评论 0原文

我正在尝试制作一个简单的程序,将 id 作为 int 发送并根据 id 获取数据。但我不断收到此错误。

Cannot load type 'remote.RemoteObjectClass, remoteclient, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.

服务器

        TcpServerChannel channel = new TcpServerChannel(8086);
        ChannelServices.RegisterChannel(channel);

        RemotingConfiguration.RegisterWellKnownServiceType(typeof(Class1), "1",
        WellKnownObjectMode.Singleton);
        label1.Text = "started";

客户端

RemoteObjectClass obj1 = (RemoteObjectClass)Activator.GetObject(
       typeof(RemoteObjectClass),
       "tcp://localhost:8086/1");

        if (obj1 == null)
        {

            label1.Text = "Could not locate TCP server";

        }
        Class1 cl = obj1.kk(Convert.ToInt32(textBox1.Text)); -- **got error here**

RemoteObjectClass

class RemoteObjectClass : System.MarshalByRefObject
{

    public int c(int i)
    {
        return 33;
    }
    public Class1 kk(int i)
    {
        Class1 k = new Class1();
        return k;
    }

ClassLibrary

namespace ClassLibrary1
{
    public class Class1 : System.MarshalByRefObject

    {
        public string ad;

        public int id;
    }
}

i am trying to make a simple program that sends an id as an int and gets the data according to id. But i keep getting this error.

Cannot load type 'remote.RemoteObjectClass, remoteclient, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.

Server

        TcpServerChannel channel = new TcpServerChannel(8086);
        ChannelServices.RegisterChannel(channel);

        RemotingConfiguration.RegisterWellKnownServiceType(typeof(Class1), "1",
        WellKnownObjectMode.Singleton);
        label1.Text = "started";

Client

RemoteObjectClass obj1 = (RemoteObjectClass)Activator.GetObject(
       typeof(RemoteObjectClass),
       "tcp://localhost:8086/1");

        if (obj1 == null)
        {

            label1.Text = "Could not locate TCP server";

        }
        Class1 cl = obj1.kk(Convert.ToInt32(textBox1.Text)); -- **got error here**

RemoteObjectClass

class RemoteObjectClass : System.MarshalByRefObject
{

    public int c(int i)
    {
        return 33;
    }
    public Class1 kk(int i)
    {
        Class1 k = new Class1();
        return k;
    }

ClassLibrary

namespace ClassLibrary1
{
    public class Class1 : System.MarshalByRefObject

    {
        public string ad;

        public int id;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月光色 2024-11-06 05:49:17

如果调用者和被调用的 RemoteObject 类位于不同的命名空间中,则可能会发生此错误。

This error may happen if the Caller and Called RemoteObject Classes are in different namespaces.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文