1
vote
4answers
191 views
Why can’t I receive a message from my remote public transactional queue?
I'm using C# on Windows Server 2008, and I want to receive a message from a public transactional queue on another machine in the same domain. The error looks like this:
System.Me …
1
vote
1answer
31 views
What’s a good way to handle “async” commits?
I have a WCF service that uses ODP.NET to read data from an Oracle database. The service also writes to the database, but indirectly, as all updates and inserts are achieved throug …
0
votes
2answers
227 views
MSDTC - Error while attempting to establish a secure connection (Standalone)
First off, I don't know if this is possible, but let me describe my scenario.
I have a set of WCF services, a SQL Server 2008 Database all running on Windows Server 2008. All of t …
1
vote
2answers
53 views
How to determine why a distributed transaction is timing out
I am using LINQ to SQL and a third party SDK that supports distributed transactions. When I realize that a pending update will be updating both SQL records and records in the thir …
0
votes
0answers
13 views
Common Gotchas when using TransactionScope and MS DTC
I am just starting to work with using TransactionScope, I find that there are always unexpected things I run into that take forever to debug.
I figure that having a consolidated …
3
votes
5answers
1k views
TransactionScope Error against Sql Server 2000 - The partner transaction manager has disabled its support for remote/network transactions.
I am trying to set up a simple transaction for my Linq-to-Sql actions against my Sql 2000 database. Using TransactionScope it looks like this:
using (TransactionScope transaction …
0
votes
3answers
321 views
WCF windows service issue with MSDTC
I've a .net 3.5 windows service which uses msmq running on 2008 application server.This service communicates with the sql 2005 database on the database server.
Am getting an error …
0
votes
1answer
51 views
MS States remote proc trans option will be removed in Next version of SQL SERVER…
Hi All,
I'm not sure whether it is right to ask it here... I searched the net for an answer, But in vain... So I just wanted to try my luck here.
Here is the excerpt from Micros …
0
votes
2answers
93 views
Should network DTC be enabled for oracle transactions
I have a WCF based web service hosted in windows sever 2003 machine. The database is Oracle 10G on solaris. The web service uses transactionscope extensively and ado.net transactio …
0
votes
1answer
84 views
What does “Allow Remote Clients” and “Allow Remote Administration” mean in MSDTC?
I am trying to configure MSDTC for some production machines and am having some difficulty learning what all the settings mean, in particular, "Allow Remote Clients" and "Allow Remo …
7
votes
4answers
121 views
TransactionScope automatically escalating to MSDTC on some machines?
In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on …
1
vote
1answer
65 views
Why isn’t Snapshot isolation supported with Distributed Transactions in SQL Server
Question is in the title. I'd just love to understand why this isn't supported?
Just to clarify this is MS Sql Server 2005 / 2008.
0
votes
2answers
148 views
MSDTC problem with transactions in ADO.NET Entity Framework
Hi,
in our current project we are using ADO.NET Entity Framework as data layer for the application. There are some tasks which require to run in a transaction because there's a lo …
0
votes
1answer
33 views
MSDTC (Distributed Transactions) support in MySQL
Does MySQL support MSDTC?
0
votes
1answer
125 views
NServiceBus and NHibernate - Message Handler and Transactions
From my understanding NServiceBus executes the Handle method of an IMessageHandler within a transaction, if an exception propagates out of this method, then NServiceBus will ensure …
