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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top