Transaction via WCF and REST
We have business logic that involves invoking services. The app is built in C # .net and the business logic should make a call to parry
1) Internal database query to update multiple fields
2) call WCF REST service to store document
3) calling a web service to store data in a queue
I want the above 3 steps to be Transactional. Is there an approach that these steps might be in a transaction or is there something wrong with our approach? Does anyone have any experience with a typical requirement?
+2
Balaji
source
to share
1 answer
REST does not support transactions - if you want to support a transaction, you will need to use the SOAP approach and wsHttpBinding or netTcpBinding.
Mark
+2
marc_s
source
to share