Hi everyone, using
I have a C# 2.0 /Sql Express 05 winforms application that gets deployed to about 200 businesses across the U.S.
In the C# applicaiton I have started to use transactionScope like so
{
aEntity.save(); //opens connection to database AbEntity.save(); //also opens connection to database A
ts.Complete();
}
Even though 2 connections with the same connection string are being opened to the same database Microsoft is still promoting this transaction to a distributed transaction and it is being handled by MSDTC. How do I know? I shut the MSDTC service off and this
fails with a message that says "MSDTC is not turned on".
Its a small pain and some overhead but overall I am fine with this promotion and I have one question that I need answered.
Does MSDTC run automatically on windows 2000, XP home, XP Pro and Vista because these are the platforms I need to support.
Users download this application via the web and I need to know whether I am going to have to configure MSDTC or not for them.
thanks for the MSDTC help.
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.