I've got a transaction, that I want to be sent only once via a wireless network.
Does anyone have some thoughts on what the best way to ensure that this transaction is sent only once is
I've got a transaction, that I want to be sent only once via a wireless network.
Does anyone have some thoughts on what the best way to ensure that this transaction is sent only once is
Sending a transaction only once over a wireless network.
Michael Hansen
What do you mean by "I've got a transaction" As in System.Transactions.Transaction class It's not supported on devices.
If you need to send a message in transactional manner (delivered once and intact or not at all) , you could use MSMQ.
If you need to update a database in transactional manner, you should use provider's transactions, e.g. System.Data.SqlClient.SqlTransaction.