Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 WCF+MSMQ(netMsmqBinding),我想知道是否需要在客户端安装任何与 MSMQ 相关的东西,当然除了我的客户端应用程序和 .NET 框架。
是的,您需要在服务端和消费者端都安装 MSMQ。
编辑:只是为了修饰答案-您需要安装 MSMQ 的原因是,当您将消息发送到另一台机器上的队列时,真正发生的是您正在向发送者机器上的队列管理器发送消息,即向接收方机器上的队列管理器发送消息,接收方机器正在向队列发送消息。
每个“发送”都是一个单独的逻辑操作,并且是赋予 MSMQ 持久性的原因。