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
2010-01-18 12:12:54
A:
WCF support a rich transactional model - see the
on the topic to get up to speed.
marc_s
2010-01-18 12:38:09