Ordered delivery with NetNamedPipeBinding using oneWay calls

Posted by Aseem Bansal on Stack Overflow See other posts from Stack Overflow or by Aseem Bansal
Published on 2010-12-26T20:49:10Z Indexed on 2010/12/26 20:54 UTC
Read the original article Hit count: 352

Filed under:
|
|

Is it possible to guarantee ordered delivery with oneWay calls using namedPipe binding?

I have a WCF service/client communicating using namedPipe binding. The client is exposing a callback contract in which all the methods in the callback are marked as OneWay. Something like this

[ServiceContract(CallbackContract = typeof(IMyServiceCallback))]
public interface IMyService
{
[OperationContract]
void MyOperation();
}

public interface IMyServiceCallback
{
[OperationContract(IsOneWay=true)]
void MyCallback1();

[OperationContract(IsOneWay=true)]
void MyCallback2();
}

At the server side, the implementation of MyOperation method always calls MyCallback1 first and then MyCallback2 but I am observing that sometimes the client receives the calls in the incorrect order (MyCallback2 first and then MyCallback1).

On searching the internet I found that the order is not guaranteed with oneway operation as mentioned here and also there is something called reliableSession which ensure message ordering.

All the examples on the internet for reliable session are with TCP binding (and not a single one with NamedPipeBinding) and the tcpBinding also has a property called ReliableSession which is not present on the NetNamedPipeBinding. So I am not sure whether reliable session is expected to work with NetNamedPipeBinding or not.

Question:

Does reliable session work with namedPipeBinding? If yes, how? If no, Is there any other approach with which I can guarantee ordered delivery?

© Stack Overflow or respective owner

Related posts about c#

Related posts about wcf