HI, i´m having trouble when enlisting llbl2 transactions within wcf transactions.
I always get a timeout, and i can´t figure out how to solve it.
I have a client, that starts a transaction scope (WCF) and then calls an operations in service.
The service does:
Guid transactionId = transactionManager.StartTransaction();
try {
documentManager.SaveDocument(document, transactionId);
transactionManager.CommitTransaction(transactionId);
}
catch{
transactionManager.RollbackTransaction(transactionId);
throw;
}
finally {
transactionManager.Dispose(transactionId);
}
Any idea? Are both kind of transactions compatible?