Does anyone know the default values for the timeout of service endpoints in a WCF web service?
Asked
Active
Viewed 3.5k times
1 Answers
39
According to MSDN the sendTimeout is 1 minute and the receiveTimeout is 10 minutes:
http://msdn.microsoft.com/en-us/library/system.servicemodel.channels.binding.sendtimeout.aspx
http://msdn.microsoft.com/en-us/library/system.servicemodel.channels.binding.receivetimeout.aspx

Leom Burke
- 8,143
- 1
- 35
- 30
-
12And **1 min** for `openTimeout` and `closeTimeout`. – JoeBilly Aug 29 '13 at 10:09