///////////////////////////////////////////////////////////////////// // C# using System.EnterpriseServices; ServiceConfig sc = new ServiceConfig(); sc.TrackingEnabled = true; sc.Transaction = TransactionOption.Required; sc.TrackingAppName = "cdecl"; sc.TrackingComponentName = "cdeclcom"; ServiceDomain.Enter(sc); try { Run(); ContextUtil.SetComplete(); } catch (Exception ex) { ContextUtil.SetAbo..