C#語言中TransactionScope類的使用

來源:互聯網
上載者:User

如果在C#中使用TransactionScope類(分散式交易),則須注意如下事項:
1、在項目中引用using System.Transactions命名空間(先要在添加net組件的引用);

2、具體樣本如下:
  

        /**//// <summary>
        /// 發送訊息
         /// </summary>
        /// <param name="sendUserId"></param>
        /// <param name="toUser">格式7FFA3AF2-E74B-4174-8403-5010C53E49A7|userName,7FFA3AF2-E74B-4174-8403-5010C53E49A7|userName</param>
        /// <param name="content"></param>
        /// <param name="sendedStatus">表示已送</param>
        /// <returns></returns>
        public static int sendMessage(string sendUserId, string toUser, string content, string sendedStatus)
        {           
            int receiveCount = 0;
            TransactionOptions transactionOption = new TransactionOptions();

            //設定交易隔離等級
            transactionOption.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;

            // 設定事務逾時時間為60秒
            transactionOption.Timeout = new TimeSpan(0, 0, 60);

            using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required, transactionOption))
            {
                try
                {
                    //在這裡實現事務性工作
     //發送訊息
                    insertMessage(sendUserId, toUser, content, sendedStatus);

     //在接收資訊表中插入記錄
                    receiveCount += insertReceiveMessage(userids[0], sendUserId, content, "0");
                   
                    // 沒有錯誤,提交事務
                    scope.Complete();
                }
                catch (Exception ex) {
                    throw new Exception("發送資訊異常,原因:"+ex.Message);
                }finally{
                    //釋放資源
                    scope.Dispose();
                  }                               
            }
            return receiveCount;
        }

 3、對MSDTC組件設定:
 步驟:
  在控制台--->管理工具--->服務 中,開啟Distributed Transaction Coordinator 服務。
 a.控制台->管理工具->元件服務->電腦->我的電腦->右鍵->屬性
 b.選擇MSDTC頁, 確認"使用本地協調器"
 c.點擊下方"安全配置"按鈕
 d.勾選: "允許網路DTC訪問","允許遠程用戶端","允許入站","允許出站","不要求進行身分識別驗證".
 e.對於資料庫伺服器端, 可選擇"要求對來電者驗證"
 f.勾選:"啟用事務Internet協議(TIP)事務"。
 g.在雙方防火牆中增加MSDTC.exe例外
   可用命令列: netsh firewall set allowedprogram %windir%\system32\msdtc.exe MSDTC enable

4、重啟IIS伺服器。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.