user1275011
user1275011

Reputation: 1772

WCF Transactions without MSDTC

I need to coordinate a transaction between several SOAP services implemented in WCF. I know I can use the WS-Atomic transaction or oleTransactions.

For some technical reasons, I cannot make any use of the MSDTC. Is there a way I can coordinate a transaction between services without using the MSDTC?

Thanks!

Upvotes: 7

Views: 1284

Answers (1)

Jignesh.Raj
Jignesh.Raj

Reputation: 5987

Can't we make WCF to manage transactions without implicitly using MSDTC.

i.e. The wcf application should manage transactions even when I disable the Distributed Transaction Co-ordinator.

Isn't is possible.

You need to visit this link:

Configure MS DTC Component Services for WCF Transactions

Upvotes: 4

Related Questions