实现 TCP、命名管道和 MSMQ 的传统方法是什么?
我最近学习了使用 IIS 7 中的 Windows 激活服务实现 TCP 和命名管道,以及实现提供这些协议的 WCF 服务。
据我所知,IIS 7 是新的,但协议不是新的。那么,
在 IIS 7 之前,在没有 IIS 7 的情况下实现 TCP、命名管道和 MSMQ 的传统方法是什么?
IIS 7 与传统方法相比有何优势?
I recently learned the implementation of TCP and Named Pipes using the Windows Activation Services in IIS 7, and implementing WCF services that offer these protocols.
I understand that IIS 7 is new but not the protocols. So,
Before IIS 7, what's the traditional way of implementing TCP, Named Pipes and MSMQ without IIS 7?
What's the advantage that IIS 7 provides over the traditional methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TCP 和命名管道自 90 年代初期的 Windows NT 早期版本起就已由 Windows 操作系统实现,MSMQ 自 90 年代后期以来已由 Windows 操作系统实现。它们具有操作系统级(“Win32”)API,早于 IIS 7。
TCP and named pipes have been implemented by the Windows O/S since the early versions of Windows NT in the early 90s, and MSMQ since the later 90s. They have O/S-level ('Win32') APIs, which predate IIS 7.