Search code examples
.netcom+

what is the .net technology to replace Microsoft Transaction Server


MTS is a popular COM+ service to do distributed transation control. I am wondeirng what is the .Net replacement for it since Com+ will be phased out.


Solution

  • AFAIK there is no replacement to MTS in .NET Framework, but it is very well integrated through System.EnterpriseServices namespace, specifically you could lookup ServicedComponent to get the transaction control feature you are looking for. Have a look at MSDN documentation of this.