是否有用于通道管理的 WCF 客户端代理生成器?

发布于 2024-12-27 05:06:19 字数 69 浏览 1 评论 0原文

您会推荐哪种最好的 ChannelFactrory 包装器? 我正在寻找一种简单的方法来处理通道创建过程并在需要时重新打开。

Which best ChannelFactrory wrapper would you recommand?
I`m searching for a simple one that will handle the channel creation process and reopen in when needed.

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

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

发布评论

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

评论(1

開玄 2025-01-03 05:06:19

使用 ChannelFactory 通道创建过程已经非常简单。

我想如果您使用 svcutil 预先生成一个服务代理,它会为您生成一个包装器。但我不认为包装器使用起来会更简单。

// Create service proxy on the fly
var factory = new ChannelFactory<IMyServiceContract>("NameOfMyClientEndpointInConfigFile");
var proxy = factory.CreateChannel();

// Create data contract
var requestDataContract = new MyRequestType();

// Call service operation.
MyResponseType responseDataContract = proxy.MyServiceOperation(requestDataContract);

在上面的示例中,IMyServiceContract 是您的服务协定,MyRequestType 和 MyResponseType 是您的数据协定,您可以通过引用服务也引用的程序集(定义这些类型)来使用它们。

The channel creation process is already very simple with ChannelFactory.

I guess if you pre-generate a service proxy using svcutil that would generate a wrapper for you. But I don't think the wrapper would be any simpler to use.

// Create service proxy on the fly
var factory = new ChannelFactory<IMyServiceContract>("NameOfMyClientEndpointInConfigFile");
var proxy = factory.CreateChannel();

// Create data contract
var requestDataContract = new MyRequestType();

// Call service operation.
MyResponseType responseDataContract = proxy.MyServiceOperation(requestDataContract);

In the above example, IMyServiceContract is your service contract, and MyRequestType and MyResponseType are your data contracts, which you can use by referencing the assembly which the service also references (which defines these types).

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