views:

36

answers:

2

Is there any way transactions can be implemented in .Net web services ?. Is it possible ?

A: 

That will depend on hall you define transaction.

Web Services should be made stateless, that is, it should not rely on the client state to perform an operation, so every information the service requires should be send in a single package.

With this in mind, if you define a transaction as a series of requests that ends up with a final "COMMIT" request, then you need to code your service to handle this "transaction", on your own.

Paulo Santos
A: 

WCF support a rich transactional model - see the

on the topic to get up to speed.

marc_s