I am reading Programming WCF Services 3rd Ed. by Juval Lowy. In the chapter "Queued Services" which covers NetMsmqBinding, On page 473, he says "... you should keep the service's processing of the queued call relatively short, or risk aborting the playback transaction. An important observation here is that it is wrong to equate queued calls with lengthy asynchronous calls."
1) What is a short call? 2) What is the best practice for long running operations; send send them off to the ThreadPool?
This article ran into the same problem in practice: WCF & MSMQ & TransactionScope long process
I have looked and looked, and I cannot find any best practices regarding this matter on the internet.
3) Does this rule apply if I have no transaction?