Financial Year 2023 End Sale: Get upto 40% OFF on Job-oriented Training! Offer Ending in
D
H
M
S
Get Now
Understanding Message Exchange Patterns (MEP) in WCF

Understanding Message Exchange Patterns (MEP) in WCF

26 Aug 2022
Intermediate
71K Views
3 min read

Message Exchange Patterns describes the way of communication between Client and Server means how client and server would be exchange messages to each other. There are three types of message exchange patterns

  1. Request-Reply

    In this communication, client sends the message to the service and waits for reply from the service. Within a ReceiveTimeout period (default timeout is one minute), if the service doesn't respond to the client then the client will receive a TimeoutException. In this pattern, client waits for the reply mes-sage, even if the service operation's return type is void.

    This the by default message exchange pattern in WCF. All WCF bindings except MSMQ-based bindings supports this pattern.

    [ServiceContract]
    public interface RequestReplyService
    { 
     [OperationContract]
     string GetData(int value);
    
     [OperationContract(IsOneWay = false)]
     void SaveData(string value);
    }
    

    To define this pattern, you can set IsOneWay property to false explicitly, but by default it is false. So there is need to define ISOneWay property for Request-Reply pattern. A Request-Reply operation returns header with an HTTP status code of 200 (OK) and a full SOAP response in the message body.

  2. One-Way

    In this communication, client sends the message to the service and doesn't wait for reply from the service. In this pattern, receiver doesn’t send any response to the sender, even if any error occurs in the communication.

    This pattern doesn’t supports output parameters, by-reference parameters and return value to an operation, otherwise you will receive an InvalidOperationException.

    All of the WCF bindings support one-way operations.

    [ServiceContract]
    public interface OneWayService
    {
     [OperationContract(IsOneWay = true)]
     void SaveData(string value);
    }
    

    A One-Way operation returns only header with an HTTP status code of 202 (Accepted) without message body. This pattern is commonly used with per-call or singleton services only.

  3. Duplex

    In this communication, client and services can sends messages to each other by using One-way or request-reply messaging.

    Only bidirectional-capable bindings support this pattern like as WS Dual, TCP and IPC bindings.

    To make a duplex contract, you must also define a callback contract and assign the typeof that callback con-tract to the CallbackContract property of your service contract’s ServiceContract attribute as shown in be-low example.

     
    [ServiceContract(CallbackContract = typeof(DuplexServiceCallback))]
    public interface DuplexService
    {
     [OperationContract(IsOneWay = true)] //One-Way
     void SaveData();
    
     [OperationContract] //Request-Reply.
     string GetData();
     }
    
     public interface DuplexServiceCallback
     {
     [OperationContract(IsOneWay = true)]
     void Progress(string status);
     }
    

    For this pattern, you must also specified the binding as wsDualHttpBinding with in your web.config as shown below-

    <services>
     <service name="WCFServiceApp.DuplexService">
     <endpoint address ="" binding="wsDualHttpBinding" con-tract="WCFServiceApp.IDuplexService">
     </endpoint>
     </service>
    </services>
    
    What do you think?

    I hope you will enjoy the tips while programming with WCF. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 8th time in a row (2016-2023). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Accept cookies & close this