I am using SQLServer 2005 and .NET when I use the following statements:
using (TransactionScope
objTransaccion = new TransactionScope(TransactionScopeOption.Required))
...
objTransaccion.Complete();
I get the following error:
System.Transactions.TransactionManagerCommunicationException:
Network access for Distributed Transaction
Manager (MSDTC) has been disabled.
Please enable DTC for network access in the
security configuration for MSDTC using the Component Services Administrative
tool. (Exception from HRESULT: 0x8004D024)
I
am trying to enable the DTC on Windows 2000 Server but the references seem to
be to Windows 2003 Server. Any
idea on how to do it on 2k Server
TIA, Brad.-