Currently we have asmx webservice, which provides the only method for creating various Sql database updates wrapped inside SqlTransaction.
I am rewriting this service in WCF, and we would like to split the existing method into subheadings available through various WCF services. There is a restriction on the use of basicHttpBinding in services, which excludes all the built-in WCF transaction functions. Is it possible to go with this architecture and support a transaction through multiple service calls? WS-TRANS was suggested as a possible solution, but I am not familiar with this, will this work?
source share