Hi everyone,
here's my problem. I am using WCF for communication between two services. I am wondering if the reliableSession
option guarantees that a message received by one service is really the same as the message sent by the other service, i.e., that no bit flips or similar happened on the wire?
I know that reliableSession
takes care of resending messages etc. if they are not acknowledged correctly, but will it perform CRC checks or something to make sure that messages have been transferred correctly?