Year End Sale: Get Upto 40% OFF on Live 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
71.9K Views
3 min read
Learn with an interactive course and practical hands-on labs

.NET Microservices Course

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)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this