After load testing, I found some packets are not sequential.
it's a basic WCF service and client is continuously sending the request.
After load testing, I found some packets are not sequential.
it's a basic WCF service and client is continuously sending the request.
Copyright © 2021 Jogjafile Inc.
It is possible to have guaranteed (in-order, exactly-once) delivery using netMsmqBinding.
The first thing you need to do is to create your actual MSMQ message queue transactional.
Secondly, you must tell WCF to enlist in the transaction like so:
Lastly, you need to specify guaranteed behavior of the service by using the exactlyOnce binding paramter:
ExactlyOnce tells WCF that we require transactions, that each message will be delivered exactly once and in the order they were sent.