Message Buffers in cloud

Posted by kaleidoscope on Geeks with Blogs See other posts from Geeks with Blogs or by kaleidoscope
Published on Mon, 22 Mar 2010 04:46:31 GMT Indexed on 2010/03/22 6:01 UTC
Read the original article Hit count: 376

Filed under:

Message Buffer is WCF queue in the cloud (although currently it does not provide all features of WCF queue). With on-premise WCF, you can take advantage of MSMQ, so that a message is sent to MSMQ by one endpoint, and another endpoint can get the message in a later time. The message is usually a SOAP message so that you can generate a client proxy and invoke the service operations just as invoking a normal WCF operation. Message Buffer is similar, but it also provides a REST API for you to work with the messages. Use it when you need a reliable WCF service.

Message buffers can be consumed by non-azure components, "Message  buffers are accessible to applications using HTTP and do not require the Windows Azure platform AppFabric SDK"

             How to: Configure an AppFabric Service Bus Message Buffer :

   please find below link for more details:

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

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

 

Chandraprakash, S

© Geeks with Blogs or respective owner