简体   繁体   中英

Communicate between two applications without MSMQ

在没有MSMQ功能的情况下,如何在Windows中发送和检索消息?

MSMQ is a network protocol so as long as you can write the data onto the wire in the right format, you'd be able to avoid installing MSMQ but normally you would make use of the installed MSMQ feature to handle all the messaging, handshaking, storage, etc.

In theory you could write your own queue manager application to replace what Windows installs for the MSMQ feature. For example, you may want to do that on a non-Windows platform.

As writing your own queue manager is a significant development project, most people don't bother and instead use what's there already.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM