0
votes
1answer
24 views

Simpleroleprovider causing remote transaction inside transactionscope

I am in the process of upgrading asp.net membership to the new simplemembership provider in MVC4. This is an Azure/Sql Azure app which runs fine on localhost but fails when deployed. I have code in ...
0
votes
0answers
28 views

How to run Specflow Scenario as Transaction ?

I use Selenium WebDriver for testing UI in my MVC 3 application. it is possible to run each scenario as TRANSACTION ??? meybe can helps beforeScenario (BEGIN) and afterScenario (ROLLBACK) but I ...
0
votes
3answers
104 views

What does a TransactionScope really do

Looking into it I verified that for example the value o "myInt" is not rolledback in the following scenario int myInt = 10; using (TransactionScope scope = new ...
0
votes
2answers
116 views

TransactionScope doesn't roll back while the nth insertion doesn't occur

I have a problem which make me turn around for 3 days. I'm using transaction scope in this transactioscope I insert say 5 values in 5 tables. The insertion goes correctly for the first 3 tables and ...
1
vote
1answer
76 views

Multiple Publish inside a transactionScope fails

I modeled an integration architecture between different subsystems. All notification from a subsystem are sent to the subscribed subsystems using the primitive Publish. These notifications are sent in ...
0
votes
0answers
56 views

Is injecting an argument, in a policy handler, within the unity interception pipeline, permissable?

So I have pulled my transaction scope into an aspect/policy. I want to associate a database connection, just one, with this transaction scope before calling the method (a data access method) in the ...
2
votes
1answer
1k views

How to use TransactionScope?

I am trying to update a DB2 database (via NHibernate) under a distributed transaction but it keeps failing. Here is the code I've written: public bool ExecuteUsingDTC(List<Func<bool>> ...
3
votes
1answer
202 views

TransactionInterop.GetDtcTransaction() throws ArgumentNullException… sometimes

I'm occasionally getting this exception, and don't seem to be able to find anything here on SO or google that can shed some insight as to how to debug this. System.ArgumentNullException: Value cannot ...
-1
votes
2answers
810 views

WCF TransactionScope doesnt RollBack

I have used this guid: http://www.c-sharpcorner.com/uploadfile/shivprasadk/wcf-faq-part-5-transactions/ Why doesnt it rollback?? I dont understand! I have a service and client Application and I dont ...
1
vote
1answer
413 views

nhibernate and transactionscope transaction aborted spontaniously

I am working with Nhibernate and TransactionScope in a large application. The application is supposed to modify 3 databases and support a distribuited transaction across them. This is the code that I ...
1
vote
2answers
723 views

TransactionScope and SQL Server Compact

SQL Server Compact doesn't support distributed transactions. So if there are more than one connection inside TransactionScope - the exception is thrown. Is there any way to setup ADO.NET provider to ...
4
votes
3answers
2k views

NHibernate 3.0: TransactionScope and Auto-Flushing

In NHibernate 3.0, FlushMode.Auto does not work when running under an ambient transaction only (that is, without starting an NHibernate transaction). Should it? using (TransactionScope scope = new ...
0
votes
2answers
203 views

.net detect distributed transaction

In my application I use the following pattern for calling the DB: //do a transaction using (TransactionScope transaction = new TransactionScope(TransactionScopeOption.Required)) { ...
8
votes
1answer
1k views

Recommended practice for stopping transactions escalating to distributed when using transactionscope

Using the TransactionScope object to set up an implicit transaction that doesn't need to be passed across function calls is great! However, if a connection is opened whilst another is already open, ...
0
votes
1answer
208 views

Why isn't TransactionScope rolling back distributed transactions?

I am using an object persistence framework called ECO for updating data to SQL Server. I've noticed that if I create a TransactionScope and then deliberately throw an exception after my first ...
4
votes
3answers
5k views

TransactionScope: Avoiding Distributed Transactions

I have a parent object (part of a DAL) that contains, amongst other things, a collection (List<t>) of child objects. When I'm saving the object back to the DB, I enter/update the parent, and ...
3
votes
1answer
1k views

Why is TransactionScope using a distributed transaction when I am only using LinqToSql and Ado.Net

We are having problems on one machine, with the error message: "MSDTC on server XXX is unavailable." The code is using a TransactionScope to wrap some LingToSql database code; there is also some ...