On Mon, Mar 28, 2011 at 10:28 AM, nch <[email protected]> wrote: > Hi! > I'm resending this email in the hope somebody who might have missed it can > read > it this time. > > Cheers. <snip> > Does Axis2 have support for transactions spanning several web services? > Does the question make sense in the first place? > What would be needed for it to work? >
If you are talking about a db transactions spanning over several web services, that would be a long running transaction and to be avoided. If I had to do something like that in terms of rollback, I'd look at some of the web service / ejb combinations that exist, such as on JBoss. For a quick hack of the top of my head, I'd explore passing a uuid to keep track of the transaction, start a new thread on the service side, return immediately, and repeat as needed, using some type of in memory store to keep the transaction alive. HTH, Robert --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
