I am using WCF netMsmqBinding. My application runs 24x7, and it pick calls from msmq and insert it in database. After around 20,000+ inserts due to some database issue(I am using Nhibernate), call gets block while inserting status in database. As current call is block, service stops picking messages from the MSMQ. If I restart the service, every thing starts normal.
I want if call is block due to database or some other reason. It should kill that call after 10-15 mins and start picking the messages from MSMQ, without restarting service.
I tried setting receivetimeout, sendtimeout, closeTimeout in netMsmqBinding in config file but it doesn't help.
Thanks Vikas Rijhwani