C# Service Timeout (30000 milliseconds) waiting for a transaction response in event viewer?

I suppose the transaction last longer than 30 seconds Try to send a transaction, something like: using (transactionscope...) insert something sleep 30 seconds insert something more It should give you the same result. If so, try to optimize or configure the transaction timeout Hope this helps Regards.

I suppose the transaction last longer than 30 seconds. Try to send a transaction, something like: using (transactionscope...) insert something sleep 30 seconds insert something more. It should give you the same result.

If so, try to optimize or configure the transaction timeout. Hope this helps Regards.

Had the same issue. You are right this has nothing to do with the database. I assume you are running Windows Server 2008 or Vista and that your app is somehow multi threaded.

Try this: support.microsoft.com/kb/972596.

This happens if the main thread of your service fails to return the control in 30 seconds. However if you check your task manager your service exe will still be running in the background. Solution is to ensure that the main function of your service returns back within the timeout period.

-Surya.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions