Microsoft Message Queue Server (MSMQ) is a fast store-and-forward service that enables applications running at different times to communicate across heterogeneous networks and systems that may be temporarily offline.
Applications send messages to queues and read messages from queues. The following illustration shows how a queue can hold messages that are generated by multiple sending applications and read by multiple receiving applications.Read more
Sample Code
- Message Queueing Integration with WCF
- Sample Starter Project Using WCF and MSMQ
- Programming MSMQ in .NET - Part 1
This sample requires the installation of Message Queuing. See the installation instructions in Message QueuingNotes on the WCF code sample
- You need to add the name of the Queue in the the appSettings
- Also in the clinent project in the service configs under system.setviceModel in the web.config file you need to add endpoint and bindings
Useful classes
MessageQueue: provides all the necessary functionality to work with and manipulate MSMQ queues
MSMQ Software Development Kit (SDK)Referencing System.Messaging libarary Message and MessageQueue classes are the ones that is needed.
Message: rovides everything required to define and use an MSMQ messageMessageQueue: provides all the necessary functionality to work with and manipulate MSMQ queues
http://technet.microsoft.com/en-us/library/cc723251.aspx|http://technet.microsoft.com/en-us/library/cc723251.aspx
No comments:
Post a Comment