What is Microsoft Message Queuing (MSMQ)? How does it work?

前端 未结 9 950
悲哀的现实
悲哀的现实 2021-01-30 04:05

I need to work with MSMQ (Microsoft Message Queuing). What is it, what is it for, how does it work? How is it different from web services?

9条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-30 04:27

    As its name states, it's just a queue manager.

    You can Send objects (serialized) to the queue where they will stay until you Receive them. It's normally used to send messages or objects between applications in a decoupled way

    It has nothing to do with webservices, they are two different things

    Info on MSMQ:

    https://msdn.microsoft.com/en-us/library/ms711472(v=vs.85).aspx

    Info on WebServices:

    http://msdn.microsoft.com/en-us/library/ms972326.aspx

提交回复
热议问题