Reputation: 322
We are building a common WCF Service which is being used by two different types of clients, ones which will use the normal Two way http binding, while the other ones will use the MSMQ binding, as the MSMQ Binding means that we can only do One Way Messages, according to this scenario my questions are
what is the possibility of using the same contract for both the clients while the contract will have the messages with the Both Way communications.
Is there a way that we can achieve the Two Way communication on the MSMQ.
What if the MSMQ is being used only for the Guaranteed Delivery, What can be alternatives for Guaranteed Delivery, where the Server and clients can have a flaky connection in between them.
Upvotes: 4
Views: 2674
Reputation: 364249
wsHttpBinding
) but it is not the same as guaranteed delivery because it works only if both server and client are running.Upvotes: 3