私はこのGUIDを使用しました:http://www.c-sharpcorner.com/uploadfile/shivprasadk/wcf-faq-part-5-transactions/ なぜロールバックしませんか?わかりません!WCF TransactionScopeはロールバックしません
私はサービスとクライアントアプリケーションを持っていますが、私はこのコードの問題点を知りません。 、完全にこのラインをやって、私のDBに保存した後
proxy.AddEmployee("Stav", "20");
私は年齢パラメータに番号を送信didntのが、トランザクションが情報ように、最初の行をロールバックdoesntのbecouse次の行スロー例外:STAV、 20まだ私のDBにexsist!
proxy.AddEmployee("Stav123", "Not a Number(-->will do Exception)")
EDIT 1: 私はaddEmployeeの実装を追加します。
クライアント:
static void Main(string[] args)
{
ServiceReference1.IJob proxy = new ServiceReference1.JobClient();
using (TransactionScope ts = new TransactionScope(TransactionScopeOption.Required))
{
try
{
proxy.AddEmployee("Stav", "20");
proxy.AddEmployee("Stav123", "Not a Number(-->will do Exception) ");//stop the running and show the Exception but keep the stav,20 in DB
ts.Complete();
}
catch
{
ts.Dispose();
}
}
}
サービス:
[ServiceContract]
public interface IJob
{
[OperationContract]
[TransactionFlow(TransactionFlowOption.Allowed)]
void AddEmployee(string Name, string Age);
}
public class JobImplement:IJob
{
[OperationBehavior(TransactionScopeRequired = true)]
public void AddEmployee(string Name, string Age)
{
string strConnection = @"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\stavalfi\Desktop\WCF2\ConsoleApplication4\WCF_DB.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True";
SqlConnection objConnection = new SqlConnection(strConnection);
objConnection.Open();
SqlCommand objCommand = new SqlCommand("INSERT INTO Employee (Name,Age) " + "VALUES ('" + Name + "' ,'" + Age + "')", objConnection);
objCommand.ExecuteNonQuery();
objConnection.Close();
}
}
static void Main(string[] args)
{
WSHttpBinding Basic = new WSHttpBinding();
Basic.TransactionFlow = true;
ServiceHost host = new ServiceHost(typeof(JobImplement), new Uri("http://localhost:8080"));
//
ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
behavior.HttpGetEnabled = true;
host.Description.Behaviors.Add(behavior);
//
host.AddServiceEndpoint(typeof(IJob), new BasicHttpBinding(), "Request123");
host.Open();
//
Console.WriteLine("opened");
Console.ReadLine();
//
host.Close();
}
AddEmployeeメソッドの実装方法を追加しますか?それは実際にトランザクションを尊重しますか? – user957902
トピックを実装で更新しました。他に何か? –
どのバインディングを使用していますか?すべてのバインディングがトランザクションをサポートするわけではありません。 – user957902