Transactions / JBoss -- similar Microsoft tool?

  • Thread starter Thread starter mark
  • Start date Start date
M

mark

In Java, you can use JBoss or similar to host EJB that will manage your
transactions for you. You could, of course, write your own transactions
using JDBC.

In .NET, we can specify our own transactions using ADO.NET. Is there a
compatible tool within .NET to JBoss, where the transactions are managed for
you?

Thanks in advance.
Mark
 
Mark,

In .NET 1.1 and before, you can use COM+ to coordinate your
transactions. In order you access this, you would have to derive your class
from ServicedComponent (it's more detailed than that, but this is just an
overview).

In .NET 2.0, you can use the classes in the new System.Transactions
namespace in order to create your own transactions, which resources will
register themselves with when a transaction is detected.

Hope this helps.
 
Back
Top