如果在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伺服器。