使用 .asmx 发布订阅模式
是否可以使用 Web 服务(而不是 WCF)实现发布-订阅模型。
我问这个问题是因为我需要使用 Mono,它的 WCF 实现不完整。
Is it possible to implement a publish-subscribe model using Web Services (not WCF).
I ask because I need to use Mono, which has an incomplete WCF implementation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地说,不,这是不可能的。您必须仅使用 WCF 进行双工通信:
http://msdn.microsoft.com /en-us/library/ms731064.aspx
此功能是 WCF 独有的。是否有可能使用套接字? asmx 不支持这种类型的通信。
Simply said, NO this is not possible. You have to use duplex communication only using WCF:
http://msdn.microsoft.com/en-us/library/ms731064.aspx
This feature is exclusive to WCF. Is there any possibility of using Sockets? asmx won't support this type of communication.