Note that there are some explanatory texts on larger screens.

plurals
  1. USadpmatos
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COYes, it is. If you do not use a transaction to process the message you do not have that problem anymore (maybe you just have to configure the receiveTimeout,... see: http://msdn.microsoft.com/en-us/library/hh924831.aspx) But, in the other hand, if you do not use a transaction if an error occurs or if the machine is powered off (for some reason) the message will be lost. At this point you have to find out how critical is to lost a message. About documentation on the subject I found a cool explanation in this book: http://www.amazon.com/Programming-WCF-Services-Mastering-AppFabric/dp/0596805489.
      singulars
    2. COIf you do not define a transaction scope within your operation ([OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]) the playback transaction will end at the moment the message reaches the service. So you will no longer have the operation aborted by a transaction timeout. But in the other hand, you will lose a message if an error ocurres inside the service. Give me a call if need any help testing this.
      singulars
    3. COI don't know any article online that talks about that. But basicly on that book (I have the first version) the author talks about the playback transaction. If you do not define a transaction scope within your operation you are not on a context of a transaction and no transaction timeout will be applied. But, if your operation will take some time to run possibly you'll need to configure the properties openTimeout, closeTimeout, sendTimeout and receiveTimeout on your binding element (see: http://msdn.microsoft.com/en-us/library/hh924831.aspx)
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload