WCF回调+ WF4
如何在WF4中调用双工wcf回调服务。请举一个简单的例子
How to call duplex wcf callback service in WF4. Please give a simple example
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在WF4中调用双工wcf回调服务。请举一个简单的例子
How to call duplex wcf callback service in WF4. Please give a simple example
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
WF4 没有直接用于普通双工 WCF 服务。由于通常长时间运行的性质,它使用称为持久双工服务的东西,这基本上是原始调用者也是完整的 WCF 服务。请参阅此处 有关如何设置此功能的博客文章。
如果您想要支持常规 WCF 双工服务,您需要创建自定义活动并使用常规 C#/VB 代码实现它。
WF4 has no direct for normal duplex WCF services. Because of the often long running nature it uses something called durable duplex services which is basically the original caller also being a full WCF service. See here for a blog post on how to set this up.
If you want to support regular WCF duplex services you would need to create a custom activity and implement it using regular C#/VB code.