gpt4 book ai didi

wcf - 从 WCF 服务返回接口(interface)

转载 作者:行者123 更新时间:2023-12-04 15:38:16 24 4
gpt4 key购买 nike

我有一些 .NET 远程处理代码,其中在某些服务器端类中实现的工厂方法返回具体对象的接口(interface),也在同一台服务器上执行。 .NET 远程自动创建代理并允许我将接口(interface)传递给客户端,然后客户端可以直接调用它们。

示例接口(interface):

public interface IFactory
{
IFoo GetFoo();
}

public interface IFoo
{
void DoSomething();
}

示例客户端代码:
...
IFactory factory = (IFactory) System.Activator.GetObject (typeof (IFactory), url);
...
IFoo foo = factory.GetFoo (); // the server returns an interface; we get a proxy to it
foo.DoSomething ();
...

这一切都很好。但是,现在我正在尝试将我的代码迁移到 WCF。我想知道是否有一种方法可以传递接口(interface)并让 WCF 在客户端动态生成代理,就像原始的 .NET 远程处理一样。

而且我不想返回类实例,因为我不想公开真实的类。并且序列化完整实例并在服务器和客户端之间来回发送它也不是一种选择。我真的只是希望客户端通过接口(interface)指针/代理与服务器对象交谈。

有任何想法吗?

最佳答案

关于wcf - 从 WCF 服务返回接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/288304/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com