是否有用于通道管理的 WCF 客户端代理生成器?
您会推荐哪种最好的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ChannelFactory 通道创建过程已经非常简单。
我想如果您使用 svcutil 预先生成一个服务代理,它会为您生成一个包装器。但我不认为包装器使用起来会更简单。
在上面的示例中,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.
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).