Пример #1
0
		/// <summary>
		/// This method will verify that the MS DTC is installed and properly configured. If
		/// the configuration is invalid or the MS DTC is not installed, it will be installed,
		/// configured, and/or started.
		/// </summary>
		/// <param name="configurator"></param>
		public static void VerifyMsDtcConfiguration(this ServiceBusConfigurator configurator)
		{
			var management = new MsDtcManagement();

			management.VerifyConfiguration(true, true);
			management.VerifyRunning(true);
		}
Пример #2
0
        public void Should_install_and_configure()
        {
            var msdtc = new MsDtcManagement();

            msdtc.VerifyConfiguration(true, true);
            msdtc.VerifyRunning(true);
        }
Пример #3
0
        /// <summary>
        /// This method will verify that the MS DTC is installed and properly configured. If
        /// the configuration is invalid or the MS DTC is not installed, it will be installed,
        /// configured, and/or started.
        /// </summary>
        /// <param name="configurator"></param>
        public static void VerifyMsDtcConfiguration(this ServiceBusConfigurator configurator)
        {
            var management = new MsDtcManagement();

            management.VerifyConfiguration(true, true);
            management.VerifyRunning(true);
        }
Пример #4
0
		public void Should_install_and_configure()
		{
			var msdtc = new MsDtcManagement();
			msdtc.VerifyConfiguration(true, true);
			msdtc.VerifyRunning(true);
		}